//============================================================================ // 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 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). // Copyright 2014 UT-Battelle, LLC. // Copyright 2014 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 #include #include namespace { template vtkm::cont::DataSet MakeWarpVectorTestDataSet() { vtkm::cont::DataSet dataSet; std::vector> coordinates; const vtkm::Id dim = 5; for (vtkm::Id j = 0; j < dim; ++j) { T z = static_cast(j) / static_cast(dim - 1); for (vtkm::Id i = 0; i < dim; ++i) { T x = static_cast(i) / static_cast(dim - 1); T y = (x * x + z * z) / 2.0f; coordinates.push_back(vtkm::make_Vec(x, y, z)); } } vtkm::Id numCells = (dim - 1) * (dim - 1); dataSet.AddCoordinateSystem( vtkm::cont::make_CoordinateSystem("coordinates", coordinates, vtkm::CopyFlag::On)); vtkm::cont::CellSetExplicit<> cellSet("cells"); cellSet.PrepareToAddCells(numCells, numCells * 4); for (vtkm::Id j = 0; j < dim - 1; ++j) { for (vtkm::Id i = 0; i < dim - 1; ++i) { cellSet.AddCell(vtkm::CELL_SHAPE_QUAD, 4, vtkm::make_Vec( j * dim + i, j * dim + i + 1, (j + 1) * dim + i + 1, (j + 1) * dim + i)); } } cellSet.CompleteAddingCells(vtkm::Id(coordinates.size())); dataSet.AddCellSet(cellSet); return dataSet; } } void TestWarpVector() { std::cout << "Testing WarpVector Worklet" << std::endl; using vecType = vtkm::Vec; vtkm::cont::DataSet ds = MakeWarpVectorTestDataSet(); vtkm::cont::ArrayHandle result; vtkm::FloatDefault scale = 2; vecType vector = vtkm::make_Vec(static_cast(0.0), static_cast(0.0), static_cast(2.0)); auto coordinate = ds.GetCoordinateSystem().GetData(); vtkm::Id nov = coordinate.GetNumberOfValues(); vtkm::cont::ArrayHandleConstant vectorAH = vtkm::cont::make_ArrayHandleConstant(vector, nov); vtkm::worklet::WarpVector warpWorklet; warpWorklet.Run(ds.GetCoordinateSystem(), vectorAH, scale, result); auto resultPortal = result.GetPortalConstControl(); for (vtkm::Id i = 0; i < nov; i++) { for (vtkm::Id j = 0; j < 3; j++) { vtkm::FloatDefault ans = coordinate.GetPortalConstControl().Get(i)[static_cast(j)] + scale * vector[static_cast(j)]; VTKM_TEST_ASSERT(test_equal(ans, resultPortal.Get(i)[static_cast(j)]), " Wrong result for WarpVector worklet"); } } } int UnitTestWarpVector(int, char* []) { vtkm::cont::GetGlobalRuntimeDeviceTracker().ForceDevice(VTKM_DEFAULT_DEVICE_ADAPTER_TAG()); return vtkm::cont::testing::Testing::Run(TestWarpVector); }