| 30 | // --------------------------------------------------------------------------------------------------------- |
| 31 | |
| 32 | FullKernelOpenCLImageRD::FullKernelOpenCLImageRD(int opencl_platform,int opencl_device,int data_type) |
| 33 | : OpenCLImageRD(opencl_platform,opencl_device,data_type) |
| 34 | { |
| 35 | this->SetRuleName("Full kernel example"); |
| 36 | this->SetFormula("kernel void rd_compute() {}"); |
| 37 | this->block_size[0]=1; |
| 38 | this->block_size[1]=1; |
| 39 | this->block_size[2]=1; |
| 40 | } |
| 41 | |
| 42 | // --------------------------------------------------------------------------------------------------------- |
| 43 |
nothing calls this directly
no test coverage detected