Verify a failed condition; return true on fail
| 230 | |
| 231 | // Verify a failed condition; return true on fail |
| 232 | inline cl_bool OPENCL_V_FAIL( cl_int res ) |
| 233 | { |
| 234 | if( res == CL_SUCCESS ) |
| 235 | return CL_FALSE; |
| 236 | else |
| 237 | return CL_TRUE; |
| 238 | } |
| 239 | |
| 240 | std::string prettyPrintclFFTStatus( const cl_int& status ) |
| 241 | { |
nothing calls this directly
no outgoing calls
no test coverage detected