diff --git a/runtime/parsec/codelets/codelet_zgered.c b/runtime/parsec/codelets/codelet_zgered.c
new file mode 100644
index 0000000000000000000000000000000000000000..b4fc056018fa7e8a7fe623a60dc409a15a245251
--- /dev/null
+++ b/runtime/parsec/codelets/codelet_zgered.c
@@ -0,0 +1,34 @@
+/**
+ *
+ * @file parsec/codelet_zgered.c
+ *
+ * @copyright 2023-2023 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ *                      Univ. Bordeaux. All rights reserved.
+ *
+ ***
+ *
+ * @brief Chameleon zgered PaRSEC codelet
+ *
+ * @version 1.3.0
+ * @author Mathieu Faverge
+ * @date 2023-07-06
+ * @precisions normal z -> d
+ *
+ */
+#include "chameleon_parsec.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 PaRSEC\n" );
+
+    (void)options;
+    (void)threshold;
+    (void)Anorm;
+    (void)m;
+    (void)n;
+    (void)A;
+    (void)Am;
+    (void)An;
+}
diff --git a/runtime/parsec/codelets/codelet_zgerst.c b/runtime/parsec/codelets/codelet_zgerst.c
new file mode 100644
index 0000000000000000000000000000000000000000..134dc20c7cb88eec4215639c17f186e1d5eb80c4
--- /dev/null
+++ b/runtime/parsec/codelets/codelet_zgerst.c
@@ -0,0 +1,32 @@
+/**
+ *
+ * @file parsec/codelet_zgerst.c
+ *
+ * @copyright 2023-2023 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ *                      Univ. Bordeaux. All rights reserved.
+ *
+ ***
+ *
+ * @brief Chameleon zgerst PaRSEC codelet
+ *
+ * @version 1.3.0
+ * @author Mathieu Faverge
+ * @date 2023-07-06
+ * @precisions normal z -> d
+ *
+ */
+#include "chameleon_parsec.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 PaRSEC\n" );
+
+    (void)options;
+    (void)m;
+    (void)n;
+    (void)A;
+    (void)Am;
+    (void)An;
+}
diff --git a/runtime/parsec/codelets/codelet_zgersum.c b/runtime/parsec/codelets/codelet_zgersum.c
index 4ab4c6208da83bf9d9923c73faaddc3368c05dd9..0d68ff0601d051b7534038346964c12e334cce39 100644
--- a/runtime/parsec/codelets/codelet_zgersum.c
+++ b/runtime/parsec/codelets/codelet_zgersum.c
@@ -1,6 +1,6 @@
 /**
  *
- * @file starpu/codelet_zgersum.c
+ * @file parsec/codelet_zgersum.c
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.