view example/Bulk/ppe/Twice.cc @ 689:ecf63089f5bb draft

Task Array generation worked.
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Sun, 06 Dec 2009 23:03:28 +0900
parents c7199f162b64
children 107e6e77f482
line wrap: on
line source

#include <stdio.h>
#include "SchedTask.h"
#include "Twice.h"
#include "Func.h"

/* これは必須 */
SchedDefineTask(Twice);

static int
run(SchedTask *s,void *rbuf, void *wbuf)
{
#if 0
    int *i_data;
    int *o_data;
    long length;

    i_data = (int*)s->get_input(rbuf, 0);
    o_data = (int*)s->get_output(wbuf, 0);
    length = (long)s->get_param(0);
    
    for (int i = 0; i < length; i++) {
	o_data[i] = i_data[i] * 2;
    }
#endif
    
    return 0;
}