You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
286 B
16 lines
286 B
#pragma once
|
|
#include "Tests.h"
|
|
|
|
|
|
class OpenCLHandler {
|
|
private:
|
|
cl::Program program;
|
|
cl::Context context;
|
|
cl::CommandQueue queue;
|
|
size_t max_workgroup_size;
|
|
void printTimeStats(cl::Event& event);
|
|
public:
|
|
OpenCLHandler();
|
|
bool run_test(TestCase* test);
|
|
size_t get_max_size();
|
|
};
|