diff --git a/compute/pztrsm.c b/compute/pztrsm.c
index 57fb5d829d06750247e26c1b786775bf742be74c..28949b75886d690ba208bec6cd29a744937da693 100644
--- a/compute/pztrsm.c
+++ b/compute/pztrsm.c
@@ -31,9 +31,9 @@
 /**
  *  Parallel tile triangular solve - dynamic scheduling
  */
-void chameleon_pztrsm(cham_side_t side, cham_uplo_t uplo, cham_trans_t trans, cham_diag_t diag,
-                         CHAMELEON_Complex64_t alpha, CHAM_desc_t *A, CHAM_desc_t *B,
-                         RUNTIME_sequence_t *sequence, RUNTIME_request_t *request)
+void chameleon_pztrsm( cham_side_t side, cham_uplo_t uplo, cham_trans_t trans, cham_diag_t diag,
+                       CHAMELEON_Complex64_t alpha, CHAM_desc_t *A, CHAM_desc_t *B,
+                       RUNTIME_sequence_t *sequence, RUNTIME_request_t *request )
 {
     CHAM_context_t *chamctxt;
     RUNTIME_option_t options;
diff --git a/compute/ztrsm.c b/compute/ztrsm.c
index 08f15403cd3ef7a749af32eaef14ea11b5099b84..c694f4fbc3fbf5dd99fe6e673558dadc594150a4 100644
--- a/compute/ztrsm.c
+++ b/compute/ztrsm.c
@@ -59,8 +59,8 @@
  *
  * @param[in] diag
  *          Specifies whether or not A is unit triangular:
- *          = ChamNonUnit: A is assumed to be unit triangular.
- *          = ChamUnit:    A is not assumed to be unit triangular.
+ *          = ChamNonUnit: A is not assumed to be unit triangular.
+ *          = ChamUnit:    A is assumed to be unit triangular.
  *
  * @param[in] M
  *          M specifies the number of rows of B. M must be at least zero.
diff --git a/control/context.c b/control/context.c
index d724c82ad9eb61966a78e49756b79138de72b724..66b844ccfacb5a86dda0ec95a0596f2a5a54b775 100644
--- a/control/context.c
+++ b/control/context.c
@@ -20,6 +20,7 @@
  * @author Alycia Lisito
  * @author Matthieu Kuhn
  * @author Loris Lucido
+ * @author Terry Cojean
  * @date 2022-02-22
  *
  ***
diff --git a/include/chameleon/constants.h b/include/chameleon/constants.h
index 6462ddd4a5142db2b9a457d14ffe1d3f1c41bfef..ba252005b72f862af1896ca1cac14ab0742f62a3 100644
--- a/include/chameleon/constants.h
+++ b/include/chameleon/constants.h
@@ -17,6 +17,7 @@
  * @author Cedric Castagnede
  * @author Florent Pruvost
  * @author Alycia Lisito
+ * @author Terry Cojean
  * @date 2022-02-22
  *
  */
diff --git a/runtime/starpu/codelets/codelet_zpotrf.c b/runtime/starpu/codelets/codelet_zpotrf.c
index ee2b3320fd9553ca4d258c4f9a06f4f9b91b3508..dc3024575ba9ab387992b4034fb7df070a044bb8 100644
--- a/runtime/starpu/codelets/codelet_zpotrf.c
+++ b/runtime/starpu/codelets/codelet_zpotrf.c
@@ -20,6 +20,7 @@
  * @author Lucas Barros de Assis
  * @author Florent Pruvost
  * @author Samuel Thibault
+ * @author Terry Cojean
  * @date 2022-02-22
  * @precisions normal z -> c d s
  *
diff --git a/runtime/starpu/codelets/codelet_zsyrk.c b/runtime/starpu/codelets/codelet_zsyrk.c
index 2c7ac3e923d909452c3c524576d82fdbeff09061..8d8dcdbe752e256a40ec8c914378dbc6356ba91f 100644
--- a/runtime/starpu/codelets/codelet_zsyrk.c
+++ b/runtime/starpu/codelets/codelet_zsyrk.c
@@ -20,6 +20,7 @@
  * @author Lucas Barros de Assis
  * @author Florent Pruvost
  * @author Gwenole Lucas
+ * @author Terry Cojean
  * @date 2022-02-22
  * @precisions normal z -> c d s
  *
diff --git a/runtime/starpu/include/runtime_codelet_profile.h b/runtime/starpu/include/runtime_codelet_profile.h
index 7d53570217e40f6dd2fa924dbd650479b0c9dd0b..d9f9dba3d0b19f64f049d31b3c8e281d9f8ea584 100644
--- a/runtime/starpu/include/runtime_codelet_profile.h
+++ b/runtime/starpu/include/runtime_codelet_profile.h
@@ -25,7 +25,7 @@
 #include <math.h>
 #include <assert.h>
 
-#define CHAMELEON_CL_CB(name, _m, _n, _k, _nflops)			\
+#define CHAMELEON_CL_CB(name, _m, _n, _k, _nflops)                                             \
     static measure_t name##_perf[STARPU_NMAXWORKERS];                                          \
     void cl_##name##_callback()                                                                \
     {                                                                                          \
@@ -36,7 +36,7 @@
         __attribute__ ((unused)) double K = (double)(_k);                                      \
         double flops = (_nflops);                                                              \
         struct starpu_profiling_task_info *info = task->profiling_info;                        \
-        assert( info != NULL );                                                                \
+        if ( info == NULL ) return;                                                            \
         double duration = starpu_timing_timespec_delay_us(&info->start_time, &info->end_time); \
         double speed = flops/(1000.0*duration);                                                \
         name##_perf[info->workerid].sum  += speed;                                             \
diff --git a/testing/chameleon_ztesting.c b/testing/chameleon_ztesting.c
index 11f0a96e1d61b90d871a52cf0d944b59006ff719..9d70612cb80e409320c5d441589145f897b30c58 100644
--- a/testing/chameleon_ztesting.c
+++ b/testing/chameleon_ztesting.c
@@ -20,6 +20,7 @@
  * @author Alycia Lisito
  * @author Philippe Swartvagher
  * @author Lucas Nesi
+ * @author Matthieu Kuhn
  * @date 2023-01-05
  * @precisions normal z -> c d s
  *
diff --git a/testing/vendor_ztesting.c b/testing/vendor_ztesting.c
index 59b7820c297b04e6d89fd83f0f1e671f49f03a1f..aa67f5429c00cc2036560f2fb474f48637c1387f 100644
--- a/testing/vendor_ztesting.c
+++ b/testing/vendor_ztesting.c
@@ -14,6 +14,7 @@
  * @version 1.2.0
  * @author Alycia Lisito
  * @author Lucas Nesi
+ * @author Matthieu Kuhn
  * @date 2023-01-05
  * @precisions normal z -> c d s
  *