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