Mentions légales du service

Skip to content
Snippets Groups Projects
Commit bb81b954 authored by PRUVOST Florent's avatar PRUVOST Florent
Browse files

chameleon: avoir warnings in simucore

parent 747c7935
Branches
Tags
No related merge requests found
...@@ -33,13 +33,13 @@ ...@@ -33,13 +33,13 @@
* =========================================================================== * ===========================================================================
*/ */
float cblas_sdsdot(const int N, const float alpha, const float *X, float cblas_sdsdot(const int N, const float alpha, const float *X,
const int incX, const float *Y, const int incY){assert(0 && CHAMELEON_SIMUCBLAS_ERROR);} const int incX, const float *Y, const int incY){assert(0 && CHAMELEON_SIMUCBLAS_ERROR); return 0.;}
double cblas_dsdot(const int N, const float *X, const int incX, const float *Y, double cblas_dsdot(const int N, const float *X, const int incX, const float *Y,
const int incY){assert(0 && CHAMELEON_SIMUCBLAS_ERROR);} const int incY){assert(0 && CHAMELEON_SIMUCBLAS_ERROR); return 0.;}
float cblas_sdot(const int N, const float *X, const int incX, float cblas_sdot(const int N, const float *X, const int incX,
const float *Y, const int incY){assert(0 && CHAMELEON_SIMUCBLAS_ERROR);} const float *Y, const int incY){assert(0 && CHAMELEON_SIMUCBLAS_ERROR); return 0.;}
double cblas_ddot(const int N, const double *X, const int incX, double cblas_ddot(const int N, const double *X, const int incX,
const double *Y, const int incY){assert(0 && CHAMELEON_SIMUCBLAS_ERROR);} const double *Y, const int incY){assert(0 && CHAMELEON_SIMUCBLAS_ERROR); return 0.;}
/* /*
* Functions having prefixes Z and C only * Functions having prefixes Z and C only
...@@ -58,26 +58,26 @@ void cblas_zdotc_sub(const int N, const void *X, const int incX, ...@@ -58,26 +58,26 @@ void cblas_zdotc_sub(const int N, const void *X, const int incX,
/* /*
* Functions having prefixes S D SC DZ * Functions having prefixes S D SC DZ
*/ */
float cblas_snrm2(const int N, const float *X, const int incX){assert(0 && CHAMELEON_SIMUCBLAS_ERROR);} float cblas_snrm2(const int N, const float *X, const int incX){assert(0 && CHAMELEON_SIMUCBLAS_ERROR); return 0.;}
float cblas_sasum(const int N, const float *X, const int incX){assert(0 && CHAMELEON_SIMUCBLAS_ERROR);} float cblas_sasum(const int N, const float *X, const int incX){assert(0 && CHAMELEON_SIMUCBLAS_ERROR); return 0.;}
double cblas_dnrm2(const int N, const double *X, const int incX){assert(0 && CHAMELEON_SIMUCBLAS_ERROR);} double cblas_dnrm2(const int N, const double *X, const int incX){assert(0 && CHAMELEON_SIMUCBLAS_ERROR); return 0.;}
double cblas_dasum(const int N, const double *X, const int incX){assert(0 && CHAMELEON_SIMUCBLAS_ERROR);} double cblas_dasum(const int N, const double *X, const int incX){assert(0 && CHAMELEON_SIMUCBLAS_ERROR); return 0.;}
float cblas_scnrm2(const int N, const void *X, const int incX){assert(0 && CHAMELEON_SIMUCBLAS_ERROR);} float cblas_scnrm2(const int N, const void *X, const int incX){assert(0 && CHAMELEON_SIMUCBLAS_ERROR); return 0.;}
float cblas_scasum(const int N, const void *X, const int incX){assert(0 && CHAMELEON_SIMUCBLAS_ERROR);} float cblas_scasum(const int N, const void *X, const int incX){assert(0 && CHAMELEON_SIMUCBLAS_ERROR); return 0.;}
double cblas_dznrm2(const int N, const void *X, const int incX){assert(0 && CHAMELEON_SIMUCBLAS_ERROR);} double cblas_dznrm2(const int N, const void *X, const int incX){assert(0 && CHAMELEON_SIMUCBLAS_ERROR); return 0.;}
double cblas_dzasum(const int N, const void *X, const int incX){assert(0 && CHAMELEON_SIMUCBLAS_ERROR);} double cblas_dzasum(const int N, const void *X, const int incX){assert(0 && CHAMELEON_SIMUCBLAS_ERROR); return 0.;}
/* /*
* Functions having standard 4 prefixes (S D C Z) * Functions having standard 4 prefixes (S D C Z)
*/ */
CBLAS_INDEX cblas_isamax(const int N, const float *X, const int incX){assert(0 && CHAMELEON_SIMUCBLAS_ERROR);} CBLAS_INDEX cblas_isamax(const int N, const float *X, const int incX){assert(0 && CHAMELEON_SIMUCBLAS_ERROR); return 0;}
CBLAS_INDEX cblas_idamax(const int N, const double *X, const int incX){assert(0 && CHAMELEON_SIMUCBLAS_ERROR);} CBLAS_INDEX cblas_idamax(const int N, const double *X, const int incX){assert(0 && CHAMELEON_SIMUCBLAS_ERROR); return 0;}
CBLAS_INDEX cblas_icamax(const int N, const void *X, const int incX){assert(0 && CHAMELEON_SIMUCBLAS_ERROR);} CBLAS_INDEX cblas_icamax(const int N, const void *X, const int incX){assert(0 && CHAMELEON_SIMUCBLAS_ERROR); return 0;}
CBLAS_INDEX cblas_izamax(const int N, const void *X, const int incX){assert(0 && CHAMELEON_SIMUCBLAS_ERROR);} CBLAS_INDEX cblas_izamax(const int N, const void *X, const int incX){assert(0 && CHAMELEON_SIMUCBLAS_ERROR); return 0;}
/* /*
* =========================================================================== * ===========================================================================
......
Source diff could not be displayed: it is too large. Options to address this: view the blob.
# #
# Check BLAS/Lapack subroutines # Check testing/
# #
set(TEST_CMD_shm testing 4 0) set(TEST_CMD_shm testing 4 0)
......
# #
# Check BLAS/Lapack subroutines # Check timing/
# #
set(TEST_CMD_shm ) set(TEST_CMD_shm --n_range=500:2000:500 --nb=320 )
set(TEST_CMD_shmgpu --gpus=1) set(TEST_CMD_shmgpu --n_range=500:2000:500 --nb=320 --gpus=1)
set(TEST_CMD_mpi --p=2) set(TEST_CMD_mpi --n_range=500:2000:500 --nb=320 --p=2)
set(TEST_CMD_mpigpu --p=2 --gpus=1) set(TEST_CMD_mpigpu --n_range=500:2000:500 --nb=320 --p=2 --gpus=1)
set(MPI_CMD_shm ) set(MPI_CMD_shm )
set(MPI_CMD_shmgpu ) set(MPI_CMD_shmgpu )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment