// Primitives.cpp : Defines the entry point for the console application. #include #include #include "Common.h" // OpenCL C API #include // OpenCL C++ API #include "cl.hpp" // Gaussian elimination const int GAn = 4; const int GAm = 3; float GA[] = { 2, 1, -1, 8, -3, -1, 2, -11, -2, 1, 2, -3 }; int GBn = 6; int GBm = 3; float GB[] = { 2, -1, 0, 1, 0, 0, -1, 2, -1, 0, 1, 0, 0, -1, 2, 0, 0, 1 }; void scalarMV(int n, int m, float* y, const float* A, const float* x, const float* b) { for (int i = 0; i platforms; cl::Platform::get(&platforms); if (platforms.size() == 0) { std::cout << "Unable to find suitable platform." << std::endl; exit(-1); } // Create a context cl_context_properties properties[] = { CL_CONTEXT_PLATFORM, (cl_context_properties)(platforms[0])(), 0 }; cl::Context context(CL_DEVICE_TYPE_GPU, properties); // Enumerate the devices std::vector devices = context.getInfo(); // Create the command queue cl::Event event; cl::CommandQueue queue(context, devices[0], 0, &err); // Create the OpenCL program std::string programSource = FileToString("../kernels/programs.cl"); cl::Program program = cl::Program(context, programSource); program.build(devices); // Get the kernel handle cl::Kernel kernel(program, "gaussian", &err); CheckCLError(err); // Allocate and upload the input data // ... cl::Buffer clInputBuffer = cl::Buffer(context, CL_MEM_READ_ONLY, sizeof(float) * GAn * GAm, NULL, &err); queue.enqueueWriteBuffer(clInputBuffer, true, 0, sizeof(float) * GAn * GAm, GA); // Set the kernel parameters kernel.setArg(0, GAn); kernel.setArg(1, GAm); kernel.setArg(2, clInputBuffer); // Enqueue the kernel queue.enqueueNDRangeKernel(kernel, cl::NullRange, cl::NDRange(GAm, 1), cl::NDRange(GAm, 1), NULL, &event); event.wait(); // Copy result back to host queue.enqueueReadBuffer(clInputBuffer, true, 0, sizeof(float) * GAn * GAm, GA); // Validate the result for (int i = 0; i < GAm; ++i) { for (int j = 0; j < GAn; ++j) { std::cout << GA[j + i * GAn]; if (j < GAn - 1) std::cout << ", "; } std::cout << std::endl; } std::cout << "Finished" << std::endl; } int main() { capi(); cppapi(); return 0; }