Commit 6cdf9254 authored by Papatheodore, Thomas's avatar Papatheodore, Thomas
Browse files

removed some Makefiles

parent d32f26ae
Loading
Loading
Loading
Loading

Makefile.crayMPI.crayClang

deleted100644 → 0
+0 −17
Original line number Diff line number Diff line
COMP  = CC
#FLAGS = -std=c++11 -fopenmp -D__HIP_PLATFORM_HCC__ -D__HIP_ROCclr__ -D__HIP_ARCH_GFX908__=1
FLAGS = -std=c++11 -fopenmp -D__HIP_PLATFORM_HCC__ -D__HIP_ROCclr__

INCLUDES  = -I$(HIP_PATH)/include
LIBRARIES = -L$(HIP_PATH)/lib -lamdhip64

hello_jobstep: hello_jobstep.o
	$(COMP) $(FLAGS) $(LIBRARIES) hello_jobstep.o -o hello_jobstep

hello_jobstep.o: hello_jobstep.cpp
	$(COMP) $(FLAGS) $(INCLUDES) -c hello_jobstep.cpp

.PHONY: clean

clean:
	rm -f hello_jobstep *.o

Makefile.crayMPI.hipcc

deleted100644 → 0
+0 −16
Original line number Diff line number Diff line
COMP  = hipcc
FLAGS = --amdgpu-target=gfx906,gfx908 -fopenmp

INCLUDES  = -I/opt/cray/pe/cray-mvapich2_nogpu/2.3.4/infiniband/cray/10.0/include
LIBRARIES = -L/opt/cray/pe/cray-mvapich2_nogpu/2.3.4/infiniband/cray/10.0/lib -lmpich

hello_jobstep: hello_jobstep.o
	$(COMP) $(FLAGS) $(LIBRARIES) hello_jobstep.o -o hello_jobstep

hello_jobstep.o: hello_jobstep.cpp
	$(COMP) $(FLAGS) $(INCLUDES) -c hello_jobstep.cpp

.PHONY: clean

clean:
	rm -f hello_jobstep *.o