//============================================================================ // Copyright (c) Kitware, Inc. // All rights reserved. // See LICENSE.txt for details. // This software is distributed WITHOUT ANY WARRANTY; without even // the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR // PURPOSE. See the above copyright notice for more information. // // Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). // Copyright 2017 UT-Battelle, LLC. // Copyright 2017 Los Alamos National Security. // // Under the terms of Contract DE-NA0003525 with NTESS, // the U.S. Government retains certain rights in this software. // // Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National // Laboratory (LANL), the U.S. Government retains certain rights in // this software. //============================================================================ #include #include #include #include namespace { static constexpr vtkm::Id ARRAY_SIZE = 10; template void TestValues(const PortalType& portal) { VTKM_TEST_ASSERT(portal.GetNumberOfValues() == ARRAY_SIZE, "Wrong array size."); for (vtkm::Id index = 0; index < ARRAY_SIZE; ++index) { VTKM_TEST_ASSERT(test_equal(portal.Get(index), index), "Got bad value."); } } template void TryCopy() { std::cout << "Trying type: " << vtkm::testing::TypeName::Name() << std::endl; vtkm::cont::ArrayHandleIndex input(ARRAY_SIZE); vtkm::cont::ArrayHandle output; vtkm::cont::ArrayCopy(input, output); TestValues(output.GetPortalConstControl()); } void TestArrayCopy() { TryCopy(); TryCopy(); TryCopy(); } } // anonymous namespace int UnitTestArrayCopy(int argc, char* argv[]) { return vtkm::cont::testing::Testing::Run(TestArrayCopy, argc, argv); }