annotate example/fft/ppe/task_init.cc @ 1817:b0376e1c51e9 draft

use get_input & get_output
author Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp>
date Fri, 13 Dec 2013 05:18:58 +0900
parents 0dd39c19dbb2
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1731
dc7dd1eaf6de add file
Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp>
parents:
diff changeset
1 #include "Func.h"
dc7dd1eaf6de add file
Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp>
parents:
diff changeset
2 #include "Scheduler.h"
dc7dd1eaf6de add file
Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp>
parents:
diff changeset
3
dc7dd1eaf6de add file
Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp>
parents:
diff changeset
4 SchedExternTask(spinFact);
dc7dd1eaf6de add file
Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp>
parents:
diff changeset
5 SchedExternTask(bitReverse);
dc7dd1eaf6de add file
Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp>
parents:
diff changeset
6 SchedExternTask(norm);
dc7dd1eaf6de add file
Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp>
parents:
diff changeset
7 SchedExternTask(butterfly);
dc7dd1eaf6de add file
Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp>
parents:
diff changeset
8 SchedExternTask(transpose);
dc7dd1eaf6de add file
Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp>
parents:
diff changeset
9 SchedExternTask(highPassFilter);
dc7dd1eaf6de add file
Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp>
parents:
diff changeset
10
dc7dd1eaf6de add file
Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp>
parents:
diff changeset
11 void
dc7dd1eaf6de add file
Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp>
parents:
diff changeset
12 task_init(void)
dc7dd1eaf6de add file
Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp>
parents:
diff changeset
13 {
dc7dd1eaf6de add file
Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp>
parents:
diff changeset
14 SchedRegisterTask(SPIN_FACT,spinFact);
dc7dd1eaf6de add file
Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp>
parents:
diff changeset
15 SchedRegisterTask(NORMALIZATION, norm);
dc7dd1eaf6de add file
Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp>
parents:
diff changeset
16 SchedRegisterTask(BIT_REVERSE, bitReverse);
dc7dd1eaf6de add file
Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp>
parents:
diff changeset
17 SchedRegisterTask(BUTTERFLY, butterfly);
dc7dd1eaf6de add file
Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp>
parents:
diff changeset
18 SchedRegisterTask(TRANSPOSE, transpose);
dc7dd1eaf6de add file
Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp>
parents:
diff changeset
19 SchedRegisterTask(HIGH_PASS_FILTER, highPassFilter);
dc7dd1eaf6de add file
Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp>
parents:
diff changeset
20 }