#ifndef BIP_H #define BIP_H #include "utils/OpenCLHelper.h" #define SCRATCH_PAD_SIZE 2000 class BIP { public: BIP(); static BIP* getInstance(); cl::CommandQueue CLQueue; void init(cl::Context &context, OpenCLHelper &openCLHelper); private: static BIP* _instance; }; #endif // BIP_H