source: CIVL/examples/cuda/Makefile@ bb03188

main test-branch
Last change on this file since bb03188 was ea777aa, checked in by Alex Wilton <awilton@…>, 3 years ago

Moved examples, include, build_default.properties, common.xml, and README out from dev.civl.com into the root of the repo.

git-svn-id: svn://vsl.cis.udel.edu/civl/trunk@5704 fb995dde-84ed-4084-dfe6-e5aef3e2452c

  • Property mode set to 100644
File size: 454 bytes
Line 
1CIVL=civl
2VERIFY=${CIVL} verify -enablePrintf=false
3
4all: dot sum cudaOmp matMult1 simple vadd
5
6sum: sum.cu
7 ${VERIFY} -inputN=8 -inputNBLOCKS=4 $<
8
9dot: dot.cu
10 ${VERIFY} -inputN_B=6 -inputthreadsPerBlock_B=4 $<
11
12cudaOmp: cuda-omp.cu
13 ${VERIFY} -inputBLOCK_B=4 -inputTHREADS_B=2 $<
14
15matMult1: matMult1.cu
16 ${VERIFY} -inputN=2 -inputTILE_WIDTH=1 $<
17
18vadd: vectorAdd.cu
19 ${VERIFY} $<
20
21simple: simple.cu
22 ${VERIFY} $<
23
24clean:
25 rm -f -r CIVLREP
26 rm -f *~
Note: See TracBrowser for help on using the repository browser.