mirror of
https://github.com/boostorg/compute.git
synced 2026-01-26 06:22:37 +00:00
24 lines
617 B
C++
24 lines
617 B
C++
#ifndef BOOST_COMPUTE_TEST_CONTEXT_SETUP_HPP
|
|
#define BOOST_COMPUTE_TEST_CONTEXT_SETUP_HPP
|
|
|
|
#include <boost/compute/system.hpp>
|
|
#include <boost/compute/command_queue.hpp>
|
|
|
|
#include "opencl_version_check.hpp"
|
|
|
|
struct Context {
|
|
boost::compute::device device;
|
|
boost::compute::context context;
|
|
boost::compute::command_queue queue;
|
|
|
|
Context() :
|
|
device ( boost::compute::system::default_device() ),
|
|
context( boost::compute::system::default_context() ),
|
|
queue ( boost::compute::system::default_queue() )
|
|
{}
|
|
};
|
|
|
|
BOOST_FIXTURE_TEST_SUITE(compute_test, Context)
|
|
|
|
#endif
|