Mentions légales du service

Skip to content
Snippets Groups Projects
Commit da563edb authored by Mathieu Faverge's avatar Mathieu Faverge
Browse files

openmp/codelets: add missing gerst/gered kernels

parent 2bc31a0d
No related branches found
No related tags found
1 merge request!401Add all the architecture to manage multi-precision data descriptors.
/**
*
* @file openmp/codelet_zgered.c
*
* @copyright 2023-2023 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
* Univ. Bordeaux. All rights reserved.
*
***
*
* @brief Chameleon zgered OpenMP codelet
*
* @version 1.3.0
* @author Mathieu Faverge
* @date 2023-07-06
* @precisions normal z -> d
*
*/
#include "chameleon_openmp.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 OpenMP\n" );
(void)options;
(void)threshold;
(void)Anorm;
(void)m;
(void)n;
(void)A;
(void)Am;
(void)An;
}
/**
*
* @file openmp/codelet_zgerst.c
*
* @copyright 2023-2023 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
* Univ. Bordeaux. All rights reserved.
*
***
*
* @brief Chameleon zgerst OpenMP codelet
*
* @version 1.3.0
* @author Mathieu Faverge
* @date 2023-07-06
* @precisions normal z -> d
*
*/
#include "chameleon_openmp.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 OpenMP\n" );
(void)options;
(void)m;
(void)n;
(void)A;
(void)Am;
(void)An;
}
/**
*
* @file starpu/codelet_zgersum.c
* @file openmp/codelet_zgersum.c
*
* @copyright 2009-2014 The University of Tennessee and The University of
* Tennessee Research Foundation. All rights reserved.
......
......@@ -9,7 +9,7 @@
*
***
*
* @brief Chameleon StarPU asynchronous routines
* @brief Chameleon OpenMP asynchronous routines
*
* @version 1.2.0
* @author Mathieu Faverge
......
......@@ -9,7 +9,7 @@
*
***
*
* @brief Chameleon StarPU context routines
* @brief Chameleon OpenMP context routines
*
* @version 1.2.0
* @author Cedric Augonnet
......
......@@ -9,7 +9,7 @@
*
***
*
* @brief Chameleon StarPU control routines
* @brief Chameleon OpenMP control routines
*
* @version 1.2.0
* @author Mathieu Faverge
......
......@@ -9,7 +9,7 @@
*
***
*
* @brief Chameleon StarPU options routines
* @brief Chameleon OpenMP options routines
*
* @version 1.2.0
* @author Cedric Augonnet
......
......@@ -9,7 +9,7 @@
*
***
*
* @brief Chameleon StarPU profiling routines
* @brief Chameleon OpenMP profiling routines
*
* @version 1.2.0
* @author Cedric Augonnet
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment