view src/parallel_execution/Executor.cbc @ 451:dcc42f3e7e97

Auto choice blockDim
author Tatsuki IHA <innparusu@cr.ie.u-ryukyu.ac.jp>
date Tue, 05 Dec 2017 06:33:40 +0900
parents 5a737c3df91c
children
line wrap: on
line source

typedef struct Executor<Type, Impl>{
    Type* Executor;
    struct Context* task;
    __code read(Impl* executor, struct Context* task, __code next(...));
    __code exec(Impl* executor, struct Context* task, __code next(...));
    __code write(Impl* executor, struct Context* task, __code next(...));
}