returns true if the device supports clCompileProgram
| 106 | |
| 107 | // returns true if the device supports clCompileProgram |
| 108 | inline bool supports_compile_program(const boost::compute::device &device) |
| 109 | { |
| 110 | // unimplemented in POCL |
| 111 | return !is_pocl_device(device); |
| 112 | } |
| 113 | |
| 114 | // returns true if the device supports clLinkProgram |
| 115 | inline bool supports_link_program(const boost::compute::device &device) |
no test coverage detected