From fe982be9ea93474275a5b0e85b9db01f8b4355a6 Mon Sep 17 00:00:00 2001 From: gyulaid Date: Mon, 7 Mar 2022 22:48:44 +0100 Subject: [PATCH] OPenCLHandler parameters --- Common/OpenCLHandler.cpp | 5 +++-- Common/OpenCLHandler.h | 2 +- Primitives/Primitives.cpp | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/Common/OpenCLHandler.cpp b/Common/OpenCLHandler.cpp index a796e79..7964f2e 100644 --- a/Common/OpenCLHandler.cpp +++ b/Common/OpenCLHandler.cpp @@ -25,7 +25,7 @@ void OpenCLHandler::printTimeStats(cl::Event& event) std::endl; } -OpenCLHandler::OpenCLHandler() +OpenCLHandler::OpenCLHandler(std::string kernelcode) { cl_int err = CL_SUCCESS; @@ -57,7 +57,8 @@ OpenCLHandler::OpenCLHandler() cl::Event event; queue = cl::CommandQueue(context, devices[0], CL_QUEUE_PROFILING_ENABLE, &err); // Create the OpenCL program - std::string programSource = FileToString("../kernels/programs.cl"); + //std::string programSource = FileToString("../kernels/programs.cl"); + std::string programSource = FileToString(kernelcode); program = cl::Program(context, programSource); program.build(devices); } diff --git a/Common/OpenCLHandler.h b/Common/OpenCLHandler.h index 4d22532..50c887f 100644 --- a/Common/OpenCLHandler.h +++ b/Common/OpenCLHandler.h @@ -10,7 +10,7 @@ private: size_t max_workgroup_size; void printTimeStats(cl::Event& event); public: - OpenCLHandler(); + OpenCLHandler(std::string kernelcode); bool run_test(TestCase* test); size_t get_max_size(); }; \ No newline at end of file diff --git a/Primitives/Primitives.cpp b/Primitives/Primitives.cpp index a09c117..b552133 100644 --- a/Primitives/Primitives.cpp +++ b/Primitives/Primitives.cpp @@ -61,7 +61,7 @@ int main() { //capi(); - OpenCLHandler handler; + OpenCLHandler handler("../kernels/programs.cl"); std::vector tests; Square s;