From daa73e90549c385b1563a296822a980c9eebfdb3 Mon Sep 17 00:00:00 2001 From: Mathieu Faverge <mathieu.faverge@inria.fr> Date: Tue, 11 Mar 2025 13:39:37 +0100 Subject: [PATCH] starpu: remove deprecated fields for store the function pointers --- runtime/starpu/include/runtime_codelets.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runtime/starpu/include/runtime_codelets.h b/runtime/starpu/include/runtime_codelets.h index 42f97ef08..8e5b5b891 100644 --- a/runtime/starpu/include/runtime_codelets.h +++ b/runtime/starpu/include/runtime_codelets.h @@ -54,7 +54,7 @@ #if defined(CHAMELEON_USE_CUDA) #define CODELET_GPU_FIELDS( gpu_func_name, gpu_flags ) \ CODELET_CUDA_FLAGS( gpu_flags ) \ - .cuda_func = ((gpu_func_name)), + .cuda_funcs = {(gpu_func_name)}, #elif defined(CHAMELEON_USE_HIP) #define CODELET_GPU_FIELDS( gpu_func_name, gpu_flags ) \ CODELET_HIP_FLAGS( gpu_flags ) \ @@ -71,7 +71,7 @@ \ struct starpu_codelet cl_##cl_name = { \ .where = (_original_location_), \ - .cpu_func = ((cpu_func_name)), \ + .cpu_funcs = {(cpu_func_name)}, \ CODELET_GPU_FIELDS( gpu_func_name, gpu_flags ) \ .nbuffers = STARPU_VARIABLE_NBUFFERS, \ .model = &cl_##cl_name##_model, \ -- GitLab