test_partition_point.cpp 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. //---------------------------------------------------------------------------//
  2. // Copyright (c) 2014 Roshan <thisisroshansmail@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 TestPartitionPoint
  11. #include <boost/test/unit_test.hpp>
  12. #include <boost/compute/algorithm/partition_point.hpp>
  13. #include <boost/compute/command_queue.hpp>
  14. #include <boost/compute/container/vector.hpp>
  15. #include <boost/compute/functional.hpp>
  16. #include <boost/compute/lambda.hpp>
  17. #include <boost/compute/system.hpp>
  18. #include "check_macros.hpp"
  19. #include "context_setup.hpp"
  20. namespace bc = boost::compute;
  21. BOOST_AUTO_TEST_CASE(partition_point_int)
  22. {
  23. int dataset[] = {1, 1, 5, 2, 4, -2, 0, -1, 0, -1};
  24. bc::vector<bc::int_> vector(dataset, dataset + 10, queue);
  25. bc::vector<bc::int_>::iterator iter =
  26. bc::partition_point(vector.begin(), vector.begin() + 10,
  27. bc::_1 > 0, queue);
  28. BOOST_VERIFY(iter == vector.begin()+5);
  29. }
  30. BOOST_AUTO_TEST_SUITE_END()