Skip to content
Snippets Groups Projects
Commit af712f4e authored by d74ksy's avatar d74ksy
Browse files

Added a new MPI and cblas version to do checking

parent 36cf45a2
No related branches found
No related tags found
No related merge requests found
......@@ -31,7 +31,7 @@ MPI_LIBS = $(METIS_LIBS) $(MPI_THREAD_LIBS)
# Set-up the library
bin_PROGRAMS = test test_bh test_bh_sorted test_fmm_sorted test_bh_mpi test_qr_mpi
if HAVECBLAS
bin_PROGRAMS += test_qr
bin_PROGRAMS += test_qr test_qr_mpi_cblas
endif
# Sources for test
......@@ -42,7 +42,7 @@ test_LDADD = ../src/.libs/libquicksched.a
# Sources for test_qr
test_qr_SOURCES = test_qr.c
test_qr_CFLAGS = $(AM_CFLAGS)
test_qr_LDADD = ../src/.libs/libquicksched.a -llapacke -llapacke -lblas
test_qr_LDADD = ../src/.libs/libquicksched.a -llapacke -llapacke -lblas -lcblas
# Sources for test_bh
test_bh_SOURCES = test_bh.c
......@@ -68,3 +68,8 @@ test_qr_mpi_SOURCES = test_qr_mpi.c
test_qr_mpi_CFLAGS = $(AM_CFLAGS) -DWITH_MPI
test_qr_mpi_LDADD = ../src/.libs/libquickschedMPI.a $(METIS_LIBS)
test_qr_mpi_LDFLAGS = $(MPI_THREAD_LIBS)
test_qr_mpi_cblas_SOURCES = test_qr_mpi.c
test_qr_mpi_cblas_CFLAGS = $(AM_CFLAGS) -DWITH_MPI -DWITH_CBLAS
test_qr_mpi_cblas_LDADD = ../src/.libs/libquickschedMPI.a $(METIS_LIBS) -llapacke -llapacke -lblas -lcblas
test_qr_mpi_cblas_LDFLAGS = $(MPI_THREAD_LIBS)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment