Mercurial > hg > Members > Moririn
annotate src/parallel_execution/Executor.cbc @ 438:7679093bdd72
Work CUDAtwice
author | Tatsuki IHA <innparusu@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Mon, 06 Nov 2017 00:11:43 +0900 |
parents | af0ec811b20e |
children | 5a737c3df91c |
rev | line source |
---|---|
435 | 1 typedef struct Executor<Impl>{ |
2 union Data* Executor; | |
3 struct Context* task; | |
4 __code read(Impl* executor, struct Context* task, __code next(...)); | |
5 __code exec(Impl* executor, struct Context* task, __code next(...)); | |
6 __code write(Impl* executor, struct Context* task, __code next(...)); | |
7 } |