Mercurial > hg > Game > Cerium
annotate example/Simple/spe/Twice.cc @ 839:1001c4bea1a0 draft
if unnecessary
author | Yutaka_Kinjyo |
---|---|
date | Fri, 28 May 2010 03:24:52 +0900 |
parents | b2b4a1243961 |
children |
rev | line source |
---|---|
634 | 1 #include <stdio.h> |
2 #include "SchedTask.h" | |
3 #include "Twice.h" | |
4 #include "Func.h" | |
5 | |
6 /* これは必須 */ | |
7 SchedDefineTask(Twice); | |
8 | |
9 static int | |
706
b2b4a1243961
no compile error on Cell. Regression Test.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
640
diff
changeset
|
10 run(SchedTask *s,void *rbuf, void *wbuf) |
634 | 11 { |
12 int *i_data; | |
13 int *o_data; | |
706
b2b4a1243961
no compile error on Cell. Regression Test.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
640
diff
changeset
|
14 long length; |
634 | 15 |
16 i_data = (int*)rbuf; | |
17 o_data = (int*)wbuf; | |
635
c56f6847fb87
SimpleTask worked on Mac OS X
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
634
diff
changeset
|
18 length = s->read_size()/sizeof(int); |
634 | 19 |
20 for (int i = 0; i < length; i++) { | |
21 o_data[i] = i_data[i] * 2; | |
22 } | |
640
ecf056ddd21a
SimpeTask on Cell worked.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
635
diff
changeset
|
23 s->printf("SPE %d end\n",s->get_cpuid()); |
634 | 24 |
25 return 0; | |
26 } |