annotate example/share_task/spe/Load.cc @ 839:1001c4bea1a0 draft

if unnecessary
author Yutaka_Kinjyo
date Fri, 28 May 2010 03:24:52 +0900
parents 0e91ddaad798
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
109
028ffc9c0375 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
1 #include <stdio.h>
028ffc9c0375 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
2 #include <string.h>
028ffc9c0375 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
3 #include "Load.h"
028ffc9c0375 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
4 #include "Func.h"
028ffc9c0375 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
5
298
768452fab95e from EUC to UTF-8
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 109
diff changeset
6 /* これは必須 */
109
028ffc9c0375 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
7 SchedDefineTask(Load);
028ffc9c0375 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
8
467
839e34d0cc3c fix all examples. test_render is not working now.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 298
diff changeset
9 static int
839e34d0cc3c fix all examples. test_render is not working now.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 298
diff changeset
10 run(SchedTask *s, void *rbuf, void *wbuf)
109
028ffc9c0375 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
11 {
467
839e34d0cc3c fix all examples. test_render is not working now.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 298
diff changeset
12 int *idata = (int*)s->get_input(rbuf, 0);
109
028ffc9c0375 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
13 int *odata;
626
0e91ddaad798 64bit mode compatibility on Cell
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 467
diff changeset
14 int length = (long)s->get_param(0);
109
028ffc9c0375 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
15
298
768452fab95e from EUC to UTF-8
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 109
diff changeset
16 // SPU LS 内に領域確保し、データをコピー
467
839e34d0cc3c fix all examples. test_render is not working now.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 298
diff changeset
17 odata = (int*)s->global_alloc(DATA_ID, sizeof(int)*length);
109
028ffc9c0375 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
18 memcpy(odata, idata, sizeof(int)*length);
028ffc9c0375 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
19
467
839e34d0cc3c fix all examples. test_render is not working now.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 298
diff changeset
20 s->printf("[TASK_LOAD] ");
109
028ffc9c0375 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
21 for (int i = 0; i < length; i++) {
467
839e34d0cc3c fix all examples. test_render is not working now.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 298
diff changeset
22 s->printf("%03d ", odata[i]);
109
028ffc9c0375 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
23 }
467
839e34d0cc3c fix all examples. test_render is not working now.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 298
diff changeset
24 s->printf("\n");
109
028ffc9c0375 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
25
028ffc9c0375 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
26 return 0;
028ffc9c0375 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
27 }