From 11b308e7363e937966b035b4891db32b4eece3bf Mon Sep 17 00:00:00 2001 From: Tor Aamodt Date: Fri, 1 Oct 2010 08:55:28 -0800 Subject: integrating recent changes from fermi-test into fermi (i'll use "fermi" for more disruptive changes to the pipeline model such as updating the MSHRs and getting rid of the warp tracker, ripping out DWF, etc...) [git-p4: depot-paths = "//depot/gpgpu_sim_research/fermi/distribution/": change = 7805] --- benchmarks/CUDA/DG/Makefiles/MakefileGPU3d | 54 ------------------------------ 1 file changed, 54 deletions(-) delete mode 100644 benchmarks/CUDA/DG/Makefiles/MakefileGPU3d (limited to 'benchmarks/CUDA/DG/Makefiles/MakefileGPU3d') diff --git a/benchmarks/CUDA/DG/Makefiles/MakefileGPU3d b/benchmarks/CUDA/DG/Makefiles/MakefileGPU3d deleted file mode 100644 index 1af50c2..0000000 --- a/benchmarks/CUDA/DG/Makefiles/MakefileGPU3d +++ /dev/null @@ -1,54 +0,0 @@ -# define variables -VPATH = ./ -HDRDIR = ./include -LIBDIR = ./lib -# adjust this for your system -CUDADIR=/usr/local/cuda/ - -# set options for this machine -# specify which compilers to use for c, fortran and linking -CC = mpicc -LD = mpicc -NVCC = nvcc - -# compiler flags to be used (set to compile with debugging on) -CFLAGS = -Dp_N=$(N) -DNDG3d -DCUDA -I/opt/local/include -I/usr/include/malloc -I$(HDRDIR) -O3 -I$(CUDADIR)/include - -# link flags to be used -LDFLAGS = -I$(HDRDIR) -L. -L./$(LIBDIR) -O3 -L$(CUDADIR)/lib - -# libraries to be linked in -LIBS = -lparmetis -lmetis -lm -lcuda -lcudart - -# types of files we are going to construct rules for -.SUFFIXES: .c .f .cu - -# rule for .c files -.c.o: - $(CC) $(CFLAGS) -o $*.o -c $*.c -.cu.o: - $(NVCC) -o $*.o -c $*.cu --compiler-options -O3 --use_fast_math $(CFLAGS) - -# list of objects to be compiled -OBJS = \ - src/Mesh3d.o\ - src/Utils.o\ - src/LoadBalance3d.o\ - src/FacePair3d.o\ - src/ParallelPairs.o\ - src/BuildMaps3d.o\ - src/StartUp3d.o\ - src/MaxwellsRun3d.o\ - src/MaxwellsMPI3d.o\ - src/MaxwellsKernel3d.o\ - src/MaxwellsDriver3d.o - -MaxwellsGPU3d:$(OBJS) - $(LD) $(LDFLAGS) -o MaxwellsGPU3d $(OBJS) $(LIBS) - rm -r $(OBJS) - -# what to do if user types "make clean" -clean : - rm -r $(OBJS) - - -- cgit v1.3