Mercurial > hg > Game > Cerium
annotate example/Cuda/Makefile.def @ 1954:30b95f372a0d draft
fix read_size
author | masa |
---|---|
date | Thu, 06 Feb 2014 20:08:08 +0900 |
parents | bbd209709ca1 |
children |
rev | line source |
---|---|
1918
15e8c50ed570
add cuda sample, not running
Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
1 TARGET = multiply |
15e8c50ed570
add cuda sample, not running
Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
2 |
15e8c50ed570
add cuda sample, not running
Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
3 OPT = -g -O0 |
15e8c50ed570
add cuda sample, not running
Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
4 |
15e8c50ed570
add cuda sample, not running
Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
5 CC = clang++ |
1919
d6e033734c12
running cuda sample
Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp>
parents:
1918
diff
changeset
|
6 NVCC = nvcc |
d6e033734c12
running cuda sample
Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp>
parents:
1918
diff
changeset
|
7 CFLAGS = -Wall $(OPT) |
1922 | 8 NVCCFLAGS = -ptx -arch=sm_20 |