//---------------------------------------------------------------------------// // Copyright (c) 2013 Kyle Lutz // // 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 TestAllocator #include #include #include #include #include #include #include #include #include "context_setup.hpp" BOOST_AUTO_TEST_CASE(allocate) { boost::compute::allocator allocator(context); typedef boost::compute::allocator::pointer pointer; pointer x = allocator.allocate(10); allocator.deallocate(x, 10); } BOOST_AUTO_TEST_CASE(vector_with_pinned_allocator) { boost::compute::vector > vector; vector.push_back(12); } BOOST_AUTO_TEST_SUITE_END()