annotate example/post_function/spe/Hello.cc @ 325:f79cacba09b1
add inner_product is minus case.
author |
e065725@yutaka.st.ie.u-ryukyu.ac.jp |
date |
Thu, 11 Jun 2009 16:55:10 +0900 |
parents |
58fd16298954 |
children |
44c0bce54dcf |
rev |
line source |
109
|
1 #include <stdio.h>
|
|
2 #include "SchedTask.h"
|
|
3 #include "Hello.h"
|
|
4 #include "Func.h"
|
|
5
|
298
|
6 /* これは必須 */
|
109
|
7 SchedDefineTask(Hello);
|
|
8
|
|
9 int
|
|
10 Hello::run(void *rbuf, void *wbuf)
|
|
11 {
|
|
12 int id = get_param(0);
|
|
13
|
|
14 printf("Hello, World!! post_func output %d\n", id);
|
|
15
|
|
16 return 0;
|
|
17 }
|