| 96 | } |
| 97 | |
| 98 | void Statistics::InitAbs(Image& Source) |
| 99 | { |
| 100 | Source.SendIfNeeded(); |
| 101 | |
| 102 | cl::make_kernel<cl::Buffer, cl::Buffer>(SelectProgram(Source), "init_abs") |
| 103 | (cl::EnqueueArgs(*m_CL, cl::NDRange(1, 1, 1)), Source, m_ResultBuffer); |
| 104 | } |
| 105 | |
| 106 | |
| 107 | // Reductions |
nothing calls this directly
no test coverage detected