From 01a59f39c96cc32ee796c1b4c796c4346f32c1f0 Mon Sep 17 00:00:00 2001 From: Brieuc Nicolas <brieuc.nicolas@inria.fr> Date: Fri, 14 Mar 2025 15:12:00 +0100 Subject: [PATCH 1/2] fix runtime include formating --- include/chameleon/runtime.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/chameleon/runtime.h b/include/chameleon/runtime.h index c930488fb..2d7125621 100644 --- a/include/chameleon/runtime.h +++ b/include/chameleon/runtime.h @@ -700,8 +700,8 @@ void RUNTIME_schedprofile_display (); void RUNTIME_kernelprofile_display(); double RUNTIME_get_time(); -void RUNTIME_iteration_push (CHAM_context_t*, unsigned long iteration); -void RUNTIME_iteration_pop (CHAM_context_t*); +void RUNTIME_iteration_push (CHAM_context_t *ctxt, unsigned long iteration); +void RUNTIME_iteration_pop (CHAM_context_t *ctxt); void RUNTIME_start_profiling(); void RUNTIME_stop_profiling(); -- GitLab From 144d8806735e2b84949479184fbb4a123d53e6f8 Mon Sep 17 00:00:00 2001 From: Brieuc Nicolas <brieuc.nicolas@inria.fr> Date: Fri, 14 Mar 2025 15:57:49 +0100 Subject: [PATCH 2/2] fix enum definition --- include/chameleon/constants.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/chameleon/constants.h b/include/chameleon/constants.h index 183e77b5e..86a47a289 100644 --- a/include/chameleon/constants.h +++ b/include/chameleon/constants.h @@ -295,7 +295,7 @@ typedef enum chameleon_getrf_e { * @brief Chameleon GETRF all reduce algorithm variants */ typedef enum chameleon_getrf_allreduce_e { - ChamStarPUTasks, + ChamStarPUTasks = 0, } cham_getrf_allreduce_t; #define ChameleonTrd 1001 -- GitLab