mirror of
https://github.com/boostorg/compute.git
synced 2026-01-28 07:02:15 +00:00
8 lines
213 B
C++
8 lines
213 B
C++
#ifndef BOOST_COMPUTE_TEST_OPENCL_VERSION_CHECK_HPP
|
|
#define BOOST_COMPUTE_TEST_OPENCL_VERSION_CHECK_HPP
|
|
|
|
#define REQUIRES_OPENCL_VERSION(major, minor) \
|
|
if (!device.check_version(major, minor)) return
|
|
|
|
#endif
|