Mentions légales du service

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

parsec/codelets: add missing gerst/gered kernels

parent 6eaa09a3
No related branches found
No related tags found
1 merge request!401Add all the architecture to manage multi-precision data descriptors.
/**
*
* @file parsec/codelet_zgered.c
*
* @copyright 2023-2023 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
* Univ. Bordeaux. All rights reserved.
*
***
*
* @brief Chameleon zgered PaRSEC codelet
*
* @version 1.3.0
* @author Mathieu Faverge
* @date 2023-07-06
* @precisions normal z -> d
*
*/
#include "chameleon_parsec.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 PaRSEC\n" );
(void)options;
(void)threshold;
(void)Anorm;
(void)m;
(void)n;
(void)A;
(void)Am;
(void)An;
}
/**
*
* @file parsec/codelet_zgerst.c
*
* @copyright 2023-2023 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
* Univ. Bordeaux. All rights reserved.
*
***
*
* @brief Chameleon zgerst PaRSEC codelet
*
* @version 1.3.0
* @author Mathieu Faverge
* @date 2023-07-06
* @precisions normal z -> d
*
*/
#include "chameleon_parsec.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 PaRSEC\n" );
(void)options;
(void)m;
(void)n;
(void)A;
(void)Am;
(void)An;
}
/**
*
* @file starpu/codelet_zgersum.c
* @file parsec/codelet_zgersum.c
*
* @copyright 2009-2014 The University of Tennessee and The University of
* Tennessee Research Foundation. All rights reserved.
......
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