Introduction
Introduction Statistics Contact Development Disclaimer Help
tMakefile - cuda-memscrub - scrubs the global device memory of CUDA GPUs
git clone git://src.adamsgaard.dk/cuda-memscrub
Log
Files
Refs
README
LICENSE
---
tMakefile (285B)
---
1 CC=nvcc
2 SRC=scrub.cu utility.cu
3 BIN=cuda-memscrub
4 CFLAGS=-g -G
5 INSTALLPATH=/usr/local/bin
6
7 $(BIN): $(SRC)
8 $(CC) $(CFLAGS) $^ -o $@
9
10 install: $(INSTALLPATH)/$(BIN)
11
12 $(INSTALLPATH)/$(BIN): $(BIN)
13 install $^ $@
14
15 memcheck: $(BIN)
16 cuda-memcheck ./$<;
17
18 clean:
19 @$(RM) $(BIN)
20 @$(RM) *.o
You are viewing proxied material from mx1.adamsgaard.dk. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.