mirror of
https://github.com/boostorg/compute.git
synced 2026-01-27 18:52:15 +00:00
refs kylelutz/compute#9 device, context, and queue are initialized statically in `context_setup.hpp`. With this change all tests are able to complete when an NVIDIA GPU is in exclusive compute mode. Side effect of the change: Time for all tests to complete reduced from 15.71 to 13.03 sec Tesla C2075.
69 lines
2.1 KiB
C++
69 lines
2.1 KiB
C++
//---------------------------------------------------------------------------//
|
|
// 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://kylelutz.github.com/compute for more information.
|
|
//---------------------------------------------------------------------------//
|
|
|
|
#define BOOST_TEST_MODULE TestTuple
|
|
#include <boost/test/unit_test.hpp>
|
|
|
|
#include <boost/tuple/tuple.hpp>
|
|
#include <boost/tuple/tuple_io.hpp>
|
|
#include <boost/tuple/tuple_comparison.hpp>
|
|
|
|
#include <boost/compute/tuple.hpp>
|
|
#include <boost/compute/algorithm/copy.hpp>
|
|
#include <boost/compute/algorithm/fill.hpp>
|
|
#include <boost/compute/algorithm/find.hpp>
|
|
#include <boost/compute/algorithm/transform.hpp>
|
|
#include <boost/compute/container/vector.hpp>
|
|
|
|
#include "context_setup.hpp"
|
|
|
|
BOOST_AUTO_TEST_CASE(vector_tuple_int_float)
|
|
{
|
|
boost::compute::vector<boost::tuple<int, float> > vector;
|
|
|
|
vector.push_back(boost::make_tuple(1, 2.1f));
|
|
vector.push_back(boost::make_tuple(2, 3.2f));
|
|
vector.push_back(boost::make_tuple(3, 4.3f));
|
|
}
|
|
|
|
BOOST_AUTO_TEST_CASE(copy_vector_tuple)
|
|
{
|
|
// create vector of tuples on device
|
|
boost::compute::vector<boost::tuple<char, int, float> > input(context);
|
|
input.push_back(boost::make_tuple('a', 1, 2.3f));
|
|
input.push_back(boost::make_tuple('c', 3, 4.5f));
|
|
input.push_back(boost::make_tuple('f', 6, 7.8f));
|
|
|
|
// copy on device
|
|
boost::compute::vector<boost::tuple<char, int, float> > output(context);
|
|
|
|
boost::compute::copy(
|
|
input.begin(),
|
|
input.end(),
|
|
output.begin()
|
|
);
|
|
|
|
// copy to host
|
|
std::vector<boost::tuple<char, int, float> > host_output(3);
|
|
|
|
boost::compute::copy(
|
|
input.begin(),
|
|
input.end(),
|
|
host_output.begin()
|
|
);
|
|
|
|
// check tuple data
|
|
BOOST_CHECK_EQUAL(host_output[0], boost::make_tuple('a', 1, 2.3f));
|
|
BOOST_CHECK_EQUAL(host_output[1], boost::make_tuple('c', 3, 4.5f));
|
|
BOOST_CHECK_EQUAL(host_output[2], boost::make_tuple('f', 6, 7.8f));
|
|
}
|
|
|
|
BOOST_AUTO_TEST_SUITE_END()
|