annotate example/word_count/Makefile @ 2069:26aa08c9a1de draft default tip

cuda example fix
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Sun, 12 Feb 2017 10:04:55 +0900
parents 7dc90c83a787
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
393
cb06748ba6cf add word_count
e065725@localhost.localdomain
parents:
diff changeset
1 default: macosx
cb06748ba6cf add word_count
e065725@localhost.localdomain
parents:
diff changeset
2
cb06748ba6cf add word_count
e065725@localhost.localdomain
parents:
diff changeset
3 macosx: FORCE
cb06748ba6cf add word_count
e065725@localhost.localdomain
parents:
diff changeset
4 @echo "Make for Mac OS X"
cb06748ba6cf add word_count
e065725@localhost.localdomain
parents:
diff changeset
5 @$(MAKE) -f Makefile.macosx
cb06748ba6cf add word_count
e065725@localhost.localdomain
parents:
diff changeset
6
cb06748ba6cf add word_count
e065725@localhost.localdomain
parents:
diff changeset
7 linux: FORCE
cb06748ba6cf add word_count
e065725@localhost.localdomain
parents:
diff changeset
8 @echo "Make for Linux"
cb06748ba6cf add word_count
e065725@localhost.localdomain
parents:
diff changeset
9 @$(MAKE) -f Makefile.linux
cb06748ba6cf add word_count
e065725@localhost.localdomain
parents:
diff changeset
10
cb06748ba6cf add word_count
e065725@localhost.localdomain
parents:
diff changeset
11 cell: FORCE
cb06748ba6cf add word_count
e065725@localhost.localdomain
parents:
diff changeset
12 @echo "Make for CELL (Cell)"
cb06748ba6cf add word_count
e065725@localhost.localdomain
parents:
diff changeset
13 @$(MAKE) -f Makefile.cell
cb06748ba6cf add word_count
e065725@localhost.localdomain
parents:
diff changeset
14
2003
7dc90c83a787 change set_last(t to next). run test at compilation time
Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp>
parents: 1941
diff changeset
15 gpu: FORCE
7dc90c83a787 change set_last(t to next). run test at compilation time
Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp>
parents: 1941
diff changeset
16 @echo "Make for OpenCL"
7dc90c83a787 change set_last(t to next). run test at compilation time
Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp>
parents: 1941
diff changeset
17 @$(MAKE) -f Makefile.gpu
7dc90c83a787 change set_last(t to next). run test at compilation time
Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp>
parents: 1941
diff changeset
18
7dc90c83a787 change set_last(t to next). run test at compilation time
Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp>
parents: 1941
diff changeset
19 cuda: FORCE
7dc90c83a787 change set_last(t to next). run test at compilation time
Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp>
parents: 1941
diff changeset
20 @echo "Make for Cuda"
7dc90c83a787 change set_last(t to next). run test at compilation time
Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp>
parents: 1941
diff changeset
21 @$(MAKE) -f Makefile.cuda
7dc90c83a787 change set_last(t to next). run test at compilation time
Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp>
parents: 1941
diff changeset
22
1884
d28f0c5489c3 ppe conditional wait done.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 1849
diff changeset
23 test:
d28f0c5489c3 ppe conditional wait done.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 1849
diff changeset
24 ./word_count -file c.txt
d28f0c5489c3 ppe conditional wait done.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 1849
diff changeset
25
2003
7dc90c83a787 change set_last(t to next). run test at compilation time
Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp>
parents: 1941
diff changeset
26 parallel-test: macosx
7dc90c83a787 change set_last(t to next). run test at compilation time
Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp>
parents: 1941
diff changeset
27 @$(MAKE) -f Makefile.macosx test
1538
fac06524090b add gpu task wordcount. But not work print
Yuhi TOMARI <yuhi@cr.ie.u-ryukyu.ac.jp>
parents: 946
diff changeset
28
1849
0296fa2dfe6d add test
Shinji KONO
parents: 1538
diff changeset
29 gpu-test: FORCE
0296fa2dfe6d add test
Shinji KONO
parents: 1538
diff changeset
30 @echo "Make for OpenCL"
0296fa2dfe6d add test
Shinji KONO
parents: 1538
diff changeset
31 @$(MAKE) -f Makefile.gpu test
0296fa2dfe6d add test
Shinji KONO
parents: 1538
diff changeset
32
1941
f19885ea776d add wordcount for cuda. fix CudaScheduler. add makefile
Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp>
parents: 1884
diff changeset
33
393
cb06748ba6cf add word_count
e065725@localhost.localdomain
parents:
diff changeset
34 FORCE:
cb06748ba6cf add word_count
e065725@localhost.localdomain
parents:
diff changeset
35
cb06748ba6cf add word_count
e065725@localhost.localdomain
parents:
diff changeset
36 clean:
cb06748ba6cf add word_count
e065725@localhost.localdomain
parents:
diff changeset
37 @$(MAKE) -f Makefile.macosx clean
cb06748ba6cf add word_count
e065725@localhost.localdomain
parents:
diff changeset
38 @$(MAKE) -f Makefile.linux clean
1849
0296fa2dfe6d add test
Shinji KONO
parents: 1538
diff changeset
39 @$(MAKE) -f Makefile.cell clean
1941
f19885ea776d add wordcount for cuda. fix CudaScheduler. add makefile
Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp>
parents: 1884
diff changeset
40 @$(MAKE) -f Makefile.cuda clean