Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions src/interface/common.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@
#include "../shared/util.h"
#include <random>

#ifdef USE_MPI_CPP
#define MPI_CXX_DOUBLE_COMPLEX MPI::DOUBLE_COMPLEX
#endif


namespace CTF_int {
int64_t computed_flop_count = 0;
Expand Down
6 changes: 0 additions & 6 deletions src/interface/set.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,9 @@

namespace CTF_int {

#ifdef USE_MPI_CPP
MPI_Datatype MPI_CTF_BOOL = MPI::BOOL;
MPI_Datatype MPI_CTF_DOUBLE_COMPLEX = MPI::DOUBLE_COMPLEX;
MPI_Datatype MPI_CTF_LONG_DOUBLE_COMPLEX = MPI::LONG_DOUBLE_COMPLEX;
#else
MPI_Datatype MPI_CTF_BOOL = MPI_CXX_BOOL;
MPI_Datatype MPI_CTF_DOUBLE_COMPLEX = MPI_CXX_DOUBLE_COMPLEX;
MPI_Datatype MPI_CTF_LONG_DOUBLE_COMPLEX = MPI_CXX_LONG_DOUBLE_COMPLEX;
#endif

#if USE_MKL
void def_coo_to_csr_fl(int64_t nz, int nrow, float * csr_vs, int * csr_ja, int * csr_ia, float * coo_vs, int * coo_rs, int * coo_cs, bool to_csr){
Expand Down