mirror of
https://github.com/boostorg/compute.git
synced 2026-02-19 14:22:12 +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
|