12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- #define TYPE double
- #define MPI_TYPE MPI_DOUBLE
- #define STARPU_PLU(name) starpu_pdlu_##name
- #define CUBLAS_GEMM cublasDgemm
- #define CUBLAS_TRSM cublasDtrsm
- #define CUBLAS_SCAL cublasDscal
- #define CUBLAS_GER cublasDger
- #define CUBLAS_SWAP cublasDswap
- #define CUBLAS_IAMAX cublasIdamax
- #define CPU_GEMM STARPU_DGEMM
- #define CPU_GEMV STARPU_DGEMV
- #define CPU_TRSM STARPU_DTRSM
- #define CPU_SCAL STARPU_DSCAL
- #define CPU_GER STARPU_DGER
- #define CPU_SWAP STARPU_DSWAP
- #define CPU_TRMM STARPU_DTRMM
- #define CPU_AXPY STARPU_DAXPY
- #define CPU_ASUM STARPU_DASUM
- #define CPU_IAMAX STARPU_IDAMAX
- #define PIVOT_THRESHHOLD 10e-10
|