1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
//---------------------------------------------------------------------------//
// Copyright (c) 2013 Kyle Lutz <kyle.r.lutz@gmail.com>
//
// Distributed under the Boost Software License, Version 1.0
// See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt
//
// See http://boostorg.github.com/compute for more information.
//---------------------------------------------------------------------------//
#define BOOST_TEST_MODULE TestSystem
#include <boost/test/unit_test.hpp>
#include <boost/compute/device.hpp>
#include <boost/compute/system.hpp>
namespace compute = boost::compute;
BOOST_AUTO_TEST_CASE(platform_count)
{
BOOST_CHECK(compute::system::platform_count() >= 1);
}
BOOST_AUTO_TEST_CASE(device_count)
{
BOOST_CHECK(compute::system::device_count() >= 1);
}
BOOST_AUTO_TEST_CASE(default_device)
{
compute::device device = compute::system::default_device();
BOOST_CHECK(device.id() != cl_device_id());
}
BOOST_AUTO_TEST_CASE(user_default_queue)
{
compute::device device = compute::system::default_device();
compute::context context = compute::context(device);
compute::command_queue queue1(context, device);
{
compute::system::default_queue(queue1);
compute::command_queue default_queue = compute::system::default_queue();
BOOST_CHECK(queue1 == default_queue);
}
#ifdef NDEBUG
compute::command_queue queue2(context, device);
{
compute::system::default_queue(queue2); // no longer settable after first initialization
compute::command_queue default_queue = compute::system::default_queue();
BOOST_CHECK(queue2 != default_queue);
BOOST_CHECK(queue1 == default_queue);
}
#endif
}
BOOST_AUTO_TEST_CASE(find_device)
{
compute::device device = compute::system::default_device();
const std::string &name = device.name();
BOOST_CHECK(compute::system::find_device(name).name() == device.name());
}
|