MCPcopy Create free account
hub / github.com/antmachineintelligence/mtgbmcode / has_remquo_func

Function has_remquo_func

compute/test/quirks.hpp:91–98  ·  view source on GitHub ↗

returns true if the device has remquo() built-in OpenCL function implementation

Source from the content-addressed store, hash-verified

89
90// returns true if the device has remquo() built-in OpenCL function implementation
91inline 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
101inline bool supports_destructor_callback(const boost::compute::device &device)

Callers 1

BOOST_AUTO_TEST_CASEFunction · 0.85

Calls 1

is_pocl_deviceFunction · 0.85

Tested by

no test coverage detected