Mercurial > hg > Game > Cerium
comparison example/dependency_task/ppe/Exec.cc @ 625:94d82f2c842f draft
64bit mode worked on Mac OS X.
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Mon, 16 Nov 2009 10:59:55 +0900 |
parents | 839e34d0cc3c |
children |
comparison
equal
deleted
inserted
replaced
624:55c95360f95b | 625:94d82f2c842f |
---|---|
8 static int | 8 static int |
9 run(SchedTask *s, void *rbuf, void *wbuf) | 9 run(SchedTask *s, void *rbuf, void *wbuf) |
10 { | 10 { |
11 int *idata = (int*)s->get_input(rbuf, 0); | 11 int *idata = (int*)s->get_input(rbuf, 0); |
12 int *odata = (int*)s->get_output(wbuf, 0); | 12 int *odata = (int*)s->get_output(wbuf, 0); |
13 int length = s->get_param(0); | 13 long length = (long)s->get_param(0); |
14 int calnum = s->get_param(1); | 14 long calnum = (long)s->get_param(1); |
15 | 15 |
16 for (int i = 0; i < length; i++) { | 16 for (int i = 0; i < length; i++) { |
17 odata[i] = idata[i] + calnum; | 17 odata[i] = idata[i] + calnum; |
18 } | 18 } |
19 | 19 |