@@ -233,20 +233,11 @@ endif
endif
-GEMMs = \
- mult/sgemm \
- mult/dgemm
-
-if STARPU_SIMGRID
-STARPU_EXAMPLES += $(GEMMs)
-endif
-if !NO_BLAS_LIB
if !NO_BLAS_LIB
STARPU_EXAMPLES += \
axpy/axpy \
+ mult/sgemm \
+ mult/dgemm \
cholesky/cholesky_tag \
cholesky/cholesky_tile_tag \
cholesky/cholesky_grain_tag \
@@ -62,7 +62,6 @@ static starpu_data_handle_t A_handle, B_handle, C_handle;
static void check_output(void)
{
-#ifndef STARPU_SIMGRID
/* compute C = C - AB */
CPU_GEMM("N", "N", ydim, xdim, zdim, (TYPE)-1.0f, A, ydim, B, zdim, (TYPE)1.0f, C, ydim);
@@ -82,7 +81,6 @@ static void check_output(void)
FPRINTF(stderr, "There were errors ... err = %f\n", err);
FPRINTF(stderr, "Max error : %e\n", C[max]);
}
-#endif
static void init_problem_data(void)