view TaskManager/ManyCore/ManyCoreTaskManagerImpl.h @ 2022:fac44ad2867d draft

make a sound
author Masataka Kohagura <kohagura@cr.ie.u-ryukyu.ac.jp>
date Wed, 16 Jul 2014 02:50:32 +0900
parents 1cb4e08a68a6
children
line wrap: on
line source

#ifndef INCLUDED_MANYCORE_TASK_MANAGER_IMPL
#define INCLUDED_MANYCORE_TASK_MANAGER_IMPL

#include "CellTaskManagerImpl.h"

class ManyCoreTaskManagerImpl : public CellTaskManagerImpl {

  public :
    /* constructor */
    ManyCoreTaskManagerImpl(int num, int gpu, Threads *cpus) : CellTaskManagerImpl(num,gpu,cpus) {
    }

    void print_arch() {
        printf("ManyCoreTaskManager\n");
    }
};

#endif