Mercurial > hg > Game > Cerium
diff example/dependency_task/ppe/Exec.cc @ 109:028ffc9c0375 draft
Cerium cvs version
author | gongo@gendarme.local |
---|---|
date | Wed, 12 Nov 2008 17:39:33 +0900 |
parents | |
children | 768452fab95e |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/example/dependency_task/ppe/Exec.cc Wed Nov 12 17:39:33 2008 +0900 @@ -0,0 +1,21 @@ +#include <stdio.h> +#include "Exec.h" +#include "Func.h" + +/* ¤³¤ì¤Ïɬ¿Ü */ +SchedDefineTask(Exec); + +int +Exec::run(void *rbuf, void *wbuf) +{ + int *idata = (int*)get_input(rbuf, 0); + int *odata = (int*)get_output(wbuf, 0); + int length = get_param(0); + int calnum = get_param(1); + + for (int i = 0; i < length; i++) { + odata[i] = idata[i] + calnum; + } + + return 0; +}