Page MenuHomec4science

Makefile
No OneTemporary

File Metadata

Created
Sun, Oct 6, 14:47

Makefile

NVCC = nvcc
CXX ?= g++
CXXFLAGS += -O3 -Wall
NVCCFLAGS += -O3 -lcublas
LDFLAGS += $(NVCCFLAGS)
#Target Rules
cgsolver: cg_main.o cg.o matrix.o matrix_coo.o mmio.o
$(NVCC) $^ $(LDFLAGS) -o $@
%.o:%.cu
$(NVCC) $(NVCCFLAGS) -c $< -o $@
OBJS=cg_main.o cg.o matrix.o matrix_coo.o mmio.o
clean:
rm -f cgsolver *.o *~

Event Timeline