Mercurial > hg > Game > Cerium
view example/Bulk/ppe/Twice.cc @ 839:1001c4bea1a0 draft
if unnecessary
author | Yutaka_Kinjyo |
---|---|
date | Fri, 28 May 2010 03:24:52 +0900 |
parents | 64f1d80dc650 |
children | a215927a9885 |
line wrap: on
line source
#include <stdio.h> #include "SchedTaskArray.h" #include "Twice.h" #include "Func.h" /* これは必須 */ SchedDefineTask1(Twice,twice_run); static int twice_run(SchedTask *s,void *rbuf, void *wbuf) { // SchedTaskArray *a = (SchedTaskArray *)s; int *i_data; int *o_data; long length; int count = (int)s->get_param(0); for(int j = 0; j<count; j++) { i_data = (int*)s->get_input(rbuf, j); o_data = (int*)s->get_output(wbuf, j); length = (long)s->get_param(j+1); for (int i = 0; i < length; i++) { o_data[i] = i_data[i] * 2; } } return 0; }