view example/dependency_task/spe/Exec.cc @ 467:44c0bce54dcf

fix all examples. test_render is not working now.
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Thu, 01 Oct 2009 19:25:25 +0900
parents 58fd16298954
children ab866bc8a624
line wrap: on
line source

#include <stdio.h>
#include "Exec.h"
#include "Func.h"

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

static int
run(SchedTask *s, void *rbuf, void *wbuf)
{
    int *idata = (int*)s->get_input(rbuf, 0);
    int *odata = (int*)s->get_output(wbuf, 0);
    int length = s->get_param(0);
    int calnum = s->get_param(1);

    for (int i = 0; i < length; i++) {
	odata[i] = idata[i] + calnum;
    }

    return 0;
}