diff --git a/runtime/openmp/codelets/codelet_zgered.c b/runtime/openmp/codelets/codelet_zgered.c
new file mode 100644
index 0000000000000000000000000000000000000000..4ccc67ba8741495d294ba45c66d4db111118e5bb
--- /dev/null
+++ b/runtime/openmp/codelets/codelet_zgered.c
@@ -0,0 +1,34 @@
+/**
+ *
+ * @file openmp/codelet_zgered.c
+ *
+ * @copyright 2023-2023 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ *                      Univ. Bordeaux. All rights reserved.
+ *
+ ***
+ *
+ * @brief Chameleon zgered OpenMP codelet
+ *
+ * @version 1.3.0
+ * @author Mathieu Faverge
+ * @date 2023-07-06
+ * @precisions normal z -> d
+ *
+ */
+#include "chameleon_openmp.h"
+
+void INSERT_TASK_zgered( const RUNTIME_option_t *options,
+                         double threshold, double Anorm, int m, int n,
+                         const CHAM_desc_t *A, int Am, int An )
+{
+    fprintf( stderr, "WARNING: gered kernel is not available with OpenMP\n" );
+
+    (void)options;
+    (void)threshold;
+    (void)Anorm;
+    (void)m;
+    (void)n;
+    (void)A;
+    (void)Am;
+    (void)An;
+}
diff --git a/runtime/openmp/codelets/codelet_zgerst.c b/runtime/openmp/codelets/codelet_zgerst.c
new file mode 100644
index 0000000000000000000000000000000000000000..97a9d65718d192c9be9b73b35b4c69ae19aae71c
--- /dev/null
+++ b/runtime/openmp/codelets/codelet_zgerst.c
@@ -0,0 +1,32 @@
+/**
+ *
+ * @file openmp/codelet_zgerst.c
+ *
+ * @copyright 2023-2023 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ *                      Univ. Bordeaux. All rights reserved.
+ *
+ ***
+ *
+ * @brief Chameleon zgerst OpenMP codelet
+ *
+ * @version 1.3.0
+ * @author Mathieu Faverge
+ * @date 2023-07-06
+ * @precisions normal z -> d
+ *
+ */
+#include "chameleon_openmp.h"
+
+void INSERT_TASK_zgerst( const RUNTIME_option_t *options,
+                         int m, int n,
+                         const CHAM_desc_t *A, int Am, int An )
+{
+    fprintf( stderr, "WARNING: gerst kernel is not available with OpenMP\n" );
+
+    (void)options;
+    (void)m;
+    (void)n;
+    (void)A;
+    (void)Am;
+    (void)An;
+}
diff --git a/runtime/openmp/codelets/codelet_zgersum.c b/runtime/openmp/codelets/codelet_zgersum.c
index 3ce42080a47a1122d83fe35aa921592ae275f54b..83c479a3983932742b5a96d231c661c1daa502f9 100644
--- a/runtime/openmp/codelets/codelet_zgersum.c
+++ b/runtime/openmp/codelets/codelet_zgersum.c
@@ -1,6 +1,6 @@
 /**
  *
- * @file starpu/codelet_zgersum.c
+ * @file openmp/codelet_zgersum.c
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
diff --git a/runtime/openmp/control/runtime_async.c b/runtime/openmp/control/runtime_async.c
index 64cccaa4b8ebade256a98b3e294b602ed7849520..764612d4b8c55ca0fd1cfbb8ff7f65fbb7e64815 100644
--- a/runtime/openmp/control/runtime_async.c
+++ b/runtime/openmp/control/runtime_async.c
@@ -9,7 +9,7 @@
  *
  ***
  *
- * @brief Chameleon StarPU asynchronous routines
+ * @brief Chameleon OpenMP asynchronous routines
  *
  * @version 1.2.0
  * @author Mathieu Faverge
diff --git a/runtime/openmp/control/runtime_context.c b/runtime/openmp/control/runtime_context.c
index 05743743c3082330d891ed491d74ec7045f0449f..5a1a1f917a059ec3d327ef4a13e6e0734922d043 100644
--- a/runtime/openmp/control/runtime_context.c
+++ b/runtime/openmp/control/runtime_context.c
@@ -9,7 +9,7 @@
  *
  ***
  *
- * @brief Chameleon StarPU context routines
+ * @brief Chameleon OpenMP context routines
  *
  * @version 1.2.0
  * @author Cedric Augonnet
diff --git a/runtime/openmp/control/runtime_control.c b/runtime/openmp/control/runtime_control.c
index 08830268f1f4677951bf1d0291265ce63282bd5a..8aa704f33fbbc5ae7a7a25145415cc55455ac221 100644
--- a/runtime/openmp/control/runtime_control.c
+++ b/runtime/openmp/control/runtime_control.c
@@ -9,7 +9,7 @@
  *
  ***
  *
- * @brief Chameleon StarPU control routines
+ * @brief Chameleon OpenMP control routines
  *
  * @version 1.2.0
  * @author Mathieu Faverge
diff --git a/runtime/openmp/control/runtime_options.c b/runtime/openmp/control/runtime_options.c
index 3c10e5801060670ea28b31631ef270cc9028516d..3f52b69331786bc9ddfd59979c641e3b2b9002a1 100644
--- a/runtime/openmp/control/runtime_options.c
+++ b/runtime/openmp/control/runtime_options.c
@@ -9,7 +9,7 @@
  *
  ***
  *
- * @brief Chameleon StarPU options routines
+ * @brief Chameleon OpenMP options routines
  *
  * @version 1.2.0
  * @author Cedric Augonnet
diff --git a/runtime/openmp/control/runtime_profiling.c b/runtime/openmp/control/runtime_profiling.c
index e1c15de64fa7bdb6845ccaa2984f2fe5ee43a204..f632fbe9cb7b00a79f95345169bb55a9becec8ee 100644
--- a/runtime/openmp/control/runtime_profiling.c
+++ b/runtime/openmp/control/runtime_profiling.c
@@ -9,7 +9,7 @@
  *
  ***
  *
- * @brief Chameleon StarPU profiling routines
+ * @brief Chameleon OpenMP profiling routines
  *
  * @version 1.2.0
  * @author Cedric Augonnet