vtk-m2/vtkm/worklet/testing/UnitTestCellDeepCopy.cxx
Kenneth Moreland bddad9b386 Remove TryExecute from filters
Now that the dispatcher does its own TryExecute, filters do not need to
do that. This change requires all worklets called by filters to be able
to execute without knowing the device a priori.
2018-10-16 15:59:53 -06:00

106 lines
3.6 KiB
C++

//============================================================================
// 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 2016 National Technology & Engineering Solutions of Sandia, LLC (NTESS).
// Copyright 2016 UT-Battelle, LLC.
// Copyright 2016 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 <vtkm/worklet/CellDeepCopy.h>
#include <vtkm/cont/ArrayHandleCounting.h>
#include <vtkm/cont/CellSetExplicit.h>
#include <vtkm/cont/CellSetPermutation.h>
#include <vtkm/cont/testing/MakeTestDataSet.h>
#include <vtkm/cont/testing/Testing.h>
namespace
{
vtkm::cont::CellSetExplicit<> CreateCellSet()
{
vtkm::cont::testing::MakeTestDataSet makeData;
vtkm::cont::DataSet data = makeData.Make3DExplicitDataSet0();
vtkm::cont::CellSetExplicit<> cellSet;
data.GetCellSet().CopyTo(cellSet);
return cellSet;
}
vtkm::cont::CellSetPermutation<vtkm::cont::CellSetExplicit<>,
vtkm::cont::ArrayHandleCounting<vtkm::Id>>
CreatePermutedCellSet()
{
std::cout << "Creating input cell set" << std::endl;
vtkm::cont::CellSetExplicit<> cellSet = CreateCellSet();
return vtkm::cont::make_CellSetPermutation(
vtkm::cont::ArrayHandleCounting<vtkm::Id>(
cellSet.GetNumberOfCells() - 1, -1, cellSet.GetNumberOfCells()),
cellSet);
}
template <typename CellSetType>
vtkm::cont::CellSetExplicit<> DoCellDeepCopy(const CellSetType& inCells)
{
std::cout << "Doing cell copy" << std::endl;
return vtkm::worklet::CellDeepCopy::Run(inCells);
}
void CheckOutput(const vtkm::cont::CellSetExplicit<>& copiedCells)
{
std::cout << "Checking copied cells" << std::endl;
vtkm::cont::CellSetExplicit<> originalCells = CreateCellSet();
vtkm::Id numberOfCells = copiedCells.GetNumberOfCells();
VTKM_TEST_ASSERT(numberOfCells == originalCells.GetNumberOfCells(),
"Result has wrong number of cells");
// Cells should be copied backward. Check that.
for (vtkm::Id cellIndex = 0; cellIndex < numberOfCells; cellIndex++)
{
vtkm::Id oCellIndex = numberOfCells - cellIndex - 1;
VTKM_TEST_ASSERT(copiedCells.GetCellShape(cellIndex) == originalCells.GetCellShape(oCellIndex),
"Bad cell shape");
vtkm::IdComponent numPoints = copiedCells.GetNumberOfPointsInCell(cellIndex);
VTKM_TEST_ASSERT(numPoints == originalCells.GetNumberOfPointsInCell(oCellIndex),
"Bad number of points in cell");
// Only checking 3 points. All cells should have at least 3
vtkm::Vec<vtkm::Id, 3> cellPoints;
copiedCells.GetIndices(cellIndex, cellPoints);
vtkm::Vec<vtkm::Id, 3> oCellPoints;
originalCells.GetIndices(oCellIndex, oCellPoints);
VTKM_TEST_ASSERT(cellPoints == oCellPoints, "Point indices not copied correctly");
}
}
void RunTest()
{
vtkm::cont::CellSetExplicit<> cellSet = DoCellDeepCopy(CreatePermutedCellSet());
CheckOutput(cellSet);
}
} // anonymous namespace
int UnitTestCellDeepCopy(int, char* [])
{
vtkm::cont::GetGlobalRuntimeDeviceTracker().ForceDevice(VTKM_DEFAULT_DEVICE_ADAPTER_TAG());
return vtkm::cont::testing::Testing::Run(RunTest);
}