Mercurial > hg > Game > Cerium
annotate TaskManager/ManyCore/ManyCoreTaskManagerImpl.h @ 2069:26aa08c9a1de draft default tip
cuda example fix
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Sun, 12 Feb 2017 10:04:55 +0900 |
parents | 1cb4e08a68a6 |
children |
rev | line source |
---|---|
1899 | 1 #ifndef INCLUDED_MANYCORE_TASK_MANAGER_IMPL |
2 #define INCLUDED_MANYCORE_TASK_MANAGER_IMPL | |
3 | |
4 #include "CellTaskManagerImpl.h" | |
5 | |
6 class ManyCoreTaskManagerImpl : public CellTaskManagerImpl { | |
7 | |
8 public : | |
9 /* constructor */ | |
10 ManyCoreTaskManagerImpl(int num, int gpu, Threads *cpus) : CellTaskManagerImpl(num,gpu,cpus) { | |
11 } | |
12 | |
13 void print_arch() { | |
14 printf("ManyCoreTaskManager\n"); | |
15 } | |
16 }; | |
17 | |
18 #endif |