Mercurial > hg > Gears > GearsAgda
view src/parallel_execution/Iterator.cbc @ 433:d920f3a3f037
Refactoring cuda.c
author | Tatsuki IHA <innparusu@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Tue, 17 Oct 2017 15:47:33 +0900 |
parents | 85b0ddbf458e |
children |
line wrap: on
line source
typedef struct Iterator<Impl>{ union Data* iterator; struct Context* task; int numGPU; __code exec(Impl* iterator, struct TaskManager* taskManager, struct Context* task, int numGPU, __code next(...)); __code barrier(Impl* iterator, struct Context* task, __code next(...), __code whenWait(...)); __code whenWait(...); __code next(...); } Iterator;