returns true if the device has remquo() built-in OpenCL function implementation
| 89 | |
| 90 | // returns true if the device has remquo() built-in OpenCL function implementation |
| 91 | inline bool has_remquo_func(const boost::compute::device &device) |
| 92 | { |
| 93 | // POCL does not have it |
| 94 | if(is_pocl_device(device)){ |
| 95 | return false; |
| 96 | } |
| 97 | return true; |
| 98 | } |
| 99 | |
| 100 | // returns true if the device supports clSetMemObjectDestructorCallback |
| 101 | inline bool supports_destructor_callback(const boost::compute::device &device) |
no test coverage detected