Skip to content

Commit f57481b

Browse files
authored
Merge pull request #590 from sourceryinstitute/bugfix-remove-aituning-wrapper
Bugfix remove aituning wrapper
2 parents 6203ab9 + 795a789 commit f57481b

File tree

2 files changed

+4
-64
lines changed

2 files changed

+4
-64
lines changed

src/mpi/AITuning_OpenCoarrays.cpp

Lines changed: 0 additions & 55 deletions
This file was deleted.

src/mpi/Makefile

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,21 @@
11
include ../make.inc
22

33
MPICC ?= mpicc
4-
MPIC++ ?= mpic++
5-
AITUNING_DIR = ./AITuning/lib/libaituning.a
6-
AITUNING_LIB =
74

8-
libcaf_mpi.a: mpi_caf.o AITuning_OpenCoarrays.o ../common/caf_auxiliary.o
9-
ar rcv $@ mpi_caf.o AITuning_OpenCoarrays.o ../common/caf_auxiliary.o
5+
libcaf_mpi.a: mpi_caf.o ../common/caf_auxiliary.o
6+
ar rcv $@ mpi_caf.o ../common/caf_auxiliary.o
107
ranlib $@
118

129
.c.o:
1310
$(MPICC) $(CFLAGS) $(MPI_CFLAGS) -I.. -c $< -o $@
14-
.cpp.o:
15-
$(MPIC++) $(CFLAGS) $(MPI_CFLAGS) -I.. -I./AITuning/include -c $< -o $@
1611

17-
mpi_caf.o: mpi_caf.c AITuning_OpenCoarrays.o ../libcaf.h ../libcaf-gfortran-descriptor.h $(AITUNING_DIR) $(AITUNING_LIB)
12+
mpi_caf.o: mpi_caf.c ../libcaf.h ../libcaf-gfortran-descriptor.h
1813

1914
../common/caf_auxiliary.o:
2015
$(MAKE) -C ../common
2116

2217
clean:
23-
rm -f *.o
18+
rm -f mpi_caf.o
2419

2520
distclean: clean
2621
rm -f libcaf_mpi.a

0 commit comments

Comments
 (0)