test_pinned_allocator.cpp 890 B

123456789101112131415161718192021222324252627
  1. //---------------------------------------------------------------------------//
  2. // Copyright (c) 2013-2014 Kyle Lutz <kyle.r.lutz@gmail.com>
  3. //
  4. // Distributed under the Boost Software License, Version 1.0
  5. // See accompanying file LICENSE_1_0.txt or copy at
  6. // http://www.boost.org/LICENSE_1_0.txt
  7. //
  8. // See http://boostorg.github.com/compute for more information.
  9. //---------------------------------------------------------------------------//
  10. #define BOOST_TEST_MODULE TestPinnedAllocator
  11. #include <boost/test/unit_test.hpp>
  12. #include <boost/compute/allocator/pinned_allocator.hpp>
  13. #include <boost/compute/container/vector.hpp>
  14. #include "context_setup.hpp"
  15. namespace compute = boost::compute;
  16. BOOST_AUTO_TEST_CASE(vector_with_pinned_allocator)
  17. {
  18. compute::vector<int, compute::pinned_allocator<int> > vector(context);
  19. vector.push_back(12, queue);
  20. }
  21. BOOST_AUTO_TEST_SUITE_END()