view src/parallel_execution/Iterator.h @ 471:e5f0cced7d43

remove error ' rbtree'.
author ryokka
date Wed, 27 Dec 2017 21:17:02 +0900
parents 6b71cf5b1c22
children
line wrap: on
line source

typedef struct Iterator<Impl>{
        union Data* iterator;
        struct Context* task;
        int numGPU;
        __code exec(Impl* iterator, struct Context* task, int numGPU, __code next(...));
        __code barrier(Impl* iterator, struct Context* task, __code next(...), __code whenWait(...));
        __code whenWait(...);
        __code next(...);
} Iterator;