mirror of
https://github.com/boostorg/compute.git
synced 2026-01-24 17:52:37 +00:00
This adds a new test-case to test_buffer which checks the functionality of the buffer(cl_mem) constructor.
69 lines
1.9 KiB
C++
69 lines
1.9 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 TestBuffer
|
|
#include <boost/test/unit_test.hpp>
|
|
|
|
#include <boost/compute/buffer.hpp>
|
|
#include <boost/compute/system.hpp>
|
|
|
|
namespace bc = boost::compute;
|
|
|
|
BOOST_AUTO_TEST_CASE(size)
|
|
{
|
|
bc::context context = bc::system::default_context();
|
|
bc::buffer buffer(context, 100);
|
|
BOOST_CHECK_EQUAL(buffer.size(), size_t(100));
|
|
BOOST_VERIFY(buffer.max_size() > buffer.size());
|
|
}
|
|
|
|
BOOST_AUTO_TEST_CASE(context)
|
|
{
|
|
bc::context context = bc::system::default_context();
|
|
bc::buffer buffer(context, 100);
|
|
BOOST_VERIFY(buffer.get_context() == context);
|
|
}
|
|
|
|
BOOST_AUTO_TEST_CASE(equality_operator)
|
|
{
|
|
bc::context context = bc::system::default_context();
|
|
bc::buffer a(context, 10);
|
|
bc::buffer b(context, 10);
|
|
BOOST_VERIFY(a == a);
|
|
BOOST_VERIFY(b == b);
|
|
BOOST_VERIFY(!(a == b));
|
|
BOOST_VERIFY(a != b);
|
|
|
|
a = b;
|
|
BOOST_VERIFY(a == b);
|
|
BOOST_VERIFY(!(a != b));
|
|
}
|
|
|
|
BOOST_AUTO_TEST_CASE(construct_from_cl_mem)
|
|
{
|
|
boost::compute::context context =
|
|
boost::compute::system::default_context();
|
|
|
|
// create cl_mem
|
|
cl_mem mem = clCreateBuffer(context, CL_MEM_READ_WRITE, 16, 0, 0);
|
|
BOOST_VERIFY(mem);
|
|
|
|
// create boost::compute::buffer
|
|
boost::compute::buffer buffer(mem);
|
|
|
|
// check buffer
|
|
BOOST_CHECK(buffer.get_mem() == mem);
|
|
BOOST_CHECK(buffer.get_context() == context);
|
|
BOOST_CHECK_EQUAL(buffer.size(), size_t(16));
|
|
|
|
// cleanup cl_mem
|
|
clReleaseMemObject(mem);
|
|
}
|