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

Minor change to defines!

parent af712f4e
Branches
Tags
No related merge requests found
......@@ -70,6 +70,6 @@ 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_CFLAGS = $(AM_CFLAGS) -DWITH_MPI -DWITH_CBLAS_LIB
test_qr_mpi_cblas_LDADD = ../src/.libs/libquickschedMPI.a $(METIS_LIBS) -llapacke -llapacke -lblas -lcblas
test_qr_mpi_cblas_LDFLAGS = $(MPI_THREAD_LIBS)
......@@ -43,7 +43,7 @@
#define TASK_TIMERS
#ifdef WITH_CBLAS
#ifdef WITH_CBLAS_LIB
/**
* Takes a column major matrix, NOT tile major. size is length of a side of the
* matrix. Only works for square matrices.
......@@ -919,7 +919,7 @@ for(i = 0; i < n; i++)
MPI_Allreduce(MPI_IN_PLACE, tau, m*n*K, MPI_DOUBLE, MPI_SUM, s.comm);
#ifdef WITH_CBLAS
#ifdef WITH_CBLAS_LIB
//This should check correctness.
double *tempMatrix = tileToColumn(A, m*n*K*K, m, n, K);
double *Q = computeQ(tempMatrix, m*K, K, tau, m);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment