main
|
Last change
on this file 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 | |
|---|
| 1 | CIVL=civl
|
|---|
| 2 | VERIFY=${CIVL} verify -enablePrintf=false
|
|---|
| 3 |
|
|---|
| 4 | all: dot sum cudaOmp matMult1 simple vadd
|
|---|
| 5 |
|
|---|
| 6 | sum: sum.cu
|
|---|
| 7 | ${VERIFY} -inputN=8 -inputNBLOCKS=4 $<
|
|---|
| 8 |
|
|---|
| 9 | dot: dot.cu
|
|---|
| 10 | ${VERIFY} -inputN_B=6 -inputthreadsPerBlock_B=4 $<
|
|---|
| 11 |
|
|---|
| 12 | cudaOmp: cuda-omp.cu
|
|---|
| 13 | ${VERIFY} -inputBLOCK_B=4 -inputTHREADS_B=2 $<
|
|---|
| 14 |
|
|---|
| 15 | matMult1: matMult1.cu
|
|---|
| 16 | ${VERIFY} -inputN=2 -inputTILE_WIDTH=1 $<
|
|---|
| 17 |
|
|---|
| 18 | vadd: vectorAdd.cu
|
|---|
| 19 | ${VERIFY} $<
|
|---|
| 20 |
|
|---|
| 21 | simple: simple.cu
|
|---|
| 22 | ${VERIFY} $<
|
|---|
| 23 |
|
|---|
| 24 | clean:
|
|---|
| 25 | rm -f -r CIVLREP
|
|---|
| 26 | rm -f *~
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.