vtk-m/vtkm/worklet/testing/UnitTestWholeCellSetIn.cxx
Kenneth Moreland d1a4aecc59 Improvements to moving data into ArrayHandle
We have made several improvements to adding data into an `ArrayHandle`.

## Moving data from an `std::vector`

For numerous reasons, it is convenient to define data in a `std::vector`
and then wrap that into an `ArrayHandle`. It is often the case that an
`std::vector` is filled and then becomes unused once it is converted to an
`ArrayHandle`. In this case, what we really want is to pass the data off to
the `ArrayHandle` so that the `ArrayHandle` is now managing the data and
not the `std::vector`.

C++11 has a mechanism to do this: move semantics. You can now pass
variables to functions as an "rvalue" (right-hand value). When something is
passed as an rvalue, it can pull state out of that variable and move it
somewhere else. `std::vector` implements this movement so that an rvalue
can be moved to another `std::vector` without actually copying the data.
`make_ArrayHandle` now also takes advantage of this feature to move rvalue
`std::vector`s.

There is a special form of `make_ArrayHandle` named `make_ArrayHandleMove`
that takes an rvalue. There is also a special overload of
`make_ArrayHandle` itself that handles an rvalue `vector`. (However, using
the explicit move version is better if you want to make sure the data is
actually moved.)

## Make `ArrayHandle` from initalizer list

A common use case for using `std::vector` (particularly in our unit tests)
is to quickly add an initalizer list into an `ArrayHandle`. Now you can
by simply passing an initializer list to `make_ArrayHandle`.

## Deprecated `make_ArrayHandle` with default shallow copy

For historical reasons, passing an `std::vector` or a pointer to
`make_ArrayHandle` does a shallow copy (i.e. `CopyFlag` defaults to `Off`).
Although more efficient, this mode is inherintly unsafe, and making it the
default is asking for trouble.

To combat this, calling `make_ArrayHandle` without a copy flag is
deprecated. In this way, if you wish to do the faster but more unsafe
creation of an `ArrayHandle` you should explicitly express that.

This requried quite a few changes through the VTK-m source (particularly in
the tests).

## Similar changes to `Field`

`vtkm::cont::Field` has a `make_Field` helper function that is similar to
`make_ArrayHandle`. It also features the ability to create fields from
`std::vector`s and C arrays. It also likewise had the same unsafe behavior
by default of not copying from the source of the arrays.

That behavior has similarly been depreciated. You now have to specify a
copy flag.

The ability to construct a `Field` from an initializer list of values has
also been added.
2020-07-23 10:53:38 -06:00

355 lines
15 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.
//============================================================================
#include <vtkm/cont/ArrayHandle.h>
#include <vtkm/cont/ArrayHandleConstant.h>
#include <vtkm/cont/ArrayHandleIndex.h>
#include <vtkm/cont/CellSetPermutation.h>
#include <vtkm/cont/DataSet.h>
#include <vtkm/cont/DynamicCellSet.h>
#include <vtkm/worklet/DispatcherMapField.h>
#include <vtkm/worklet/WorkletMapField.h>
#include <vtkm/cont/testing/MakeTestDataSet.h>
#include <vtkm/cont/testing/Testing.h>
struct TestWholeCellSetIn
{
template <typename VisitTopology, typename IncidentTopology>
struct WholeCellSetWorklet : public vtkm::worklet::WorkletMapField
{
using ControlSignature = void(FieldIn indices,
WholeCellSetIn<VisitTopology, IncidentTopology>,
FieldOut numberOfElements,
FieldOut shapes,
FieldOut numberOfindices,
FieldOut connectionSum);
using ExecutionSignature = void(_1, _2, _3, _4, _5, _6);
using InputDomain = _1;
template <typename ConnectivityType>
VTKM_EXEC void operator()(vtkm::Id index,
const ConnectivityType& connectivity,
vtkm::Id& numberOfElements,
vtkm::UInt8& shape,
vtkm::IdComponent& numberOfIndices,
vtkm::Id& connectionSum) const
{
numberOfElements = connectivity.GetNumberOfElements();
shape = connectivity.GetCellShape(index).Id;
numberOfIndices = connectivity.GetNumberOfIndices(index);
typename ConnectivityType::IndicesType indices = connectivity.GetIndices(index);
if (numberOfIndices != indices.GetNumberOfComponents())
{
this->RaiseError("Got wrong number of connections.");
}
connectionSum = 0;
for (vtkm::IdComponent componentIndex = 0; componentIndex < indices.GetNumberOfComponents();
componentIndex++)
{
connectionSum += indices[componentIndex];
}
}
};
template <typename CellSetType>
VTKM_CONT static void RunCells(const CellSetType& cellSet,
vtkm::cont::ArrayHandle<vtkm::Id> numberOfElements,
vtkm::cont::ArrayHandle<vtkm::UInt8> shapeIds,
vtkm::cont::ArrayHandle<vtkm::IdComponent> numberOfIndices,
vtkm::cont::ArrayHandle<vtkm::Id> connectionSum)
{
using WorkletType =
WholeCellSetWorklet<vtkm::TopologyElementTagCell, vtkm::TopologyElementTagPoint>;
vtkm::worklet::DispatcherMapField<WorkletType> dispatcher;
dispatcher.Invoke(vtkm::cont::ArrayHandleIndex(cellSet.GetNumberOfCells()),
cellSet,
numberOfElements,
shapeIds,
numberOfIndices,
&connectionSum);
}
template <typename CellSetType>
VTKM_CONT static void RunPoints(const CellSetType* cellSet,
vtkm::cont::ArrayHandle<vtkm::Id> numberOfElements,
vtkm::cont::ArrayHandle<vtkm::UInt8> shapeIds,
vtkm::cont::ArrayHandle<vtkm::IdComponent> numberOfIndices,
vtkm::cont::ArrayHandle<vtkm::Id> connectionSum)
{
using WorkletType =
WholeCellSetWorklet<vtkm::TopologyElementTagPoint, vtkm::TopologyElementTagCell>;
vtkm::worklet::DispatcherMapField<WorkletType> dispatcher;
dispatcher.Invoke(vtkm::cont::ArrayHandleIndex(cellSet->GetNumberOfPoints()),
cellSet,
numberOfElements,
&shapeIds,
numberOfIndices,
connectionSum);
}
};
template <typename CellSetType,
typename ShapeArrayType,
typename NumIndicesArrayType,
typename ConnectionSumArrayType>
VTKM_CONT void TryCellConnectivity(const CellSetType& cellSet,
const ShapeArrayType& expectedShapeIds,
const NumIndicesArrayType& expectedNumberOfIndices,
const ConnectionSumArrayType& expectedSum)
{
std::cout << " trying point to cell connectivity" << std::endl;
vtkm::cont::ArrayHandle<vtkm::Id> numberOfElements;
vtkm::cont::ArrayHandle<vtkm::UInt8> shapeIds;
vtkm::cont::ArrayHandle<vtkm::IdComponent> numberOfIndices;
vtkm::cont::ArrayHandle<vtkm::Id> connectionSum;
TestWholeCellSetIn::RunCells(cellSet, numberOfElements, shapeIds, numberOfIndices, connectionSum);
std::cout << " Number of elements: " << numberOfElements.ReadPortal().Get(0) << std::endl;
VTKM_TEST_ASSERT(test_equal_portals(numberOfElements.ReadPortal(),
vtkm::cont::make_ArrayHandleConstant(
cellSet.GetNumberOfCells(), cellSet.GetNumberOfCells())
.ReadPortal()),
"Incorrect number of elements.");
std::cout << " Shape Ids: ";
vtkm::cont::printSummary_ArrayHandle(shapeIds, std::cout, true);
VTKM_TEST_ASSERT(test_equal_portals(shapeIds.ReadPortal(), expectedShapeIds.ReadPortal()),
"Incorrect shape Ids.");
std::cout << " Number of indices: ";
vtkm::cont::printSummary_ArrayHandle(numberOfIndices, std::cout, true);
VTKM_TEST_ASSERT(
test_equal_portals(numberOfIndices.ReadPortal(), expectedNumberOfIndices.ReadPortal()),
"Incorrect number of indices.");
std::cout << " Sum of indices: ";
vtkm::cont::printSummary_ArrayHandle(connectionSum, std::cout, true);
VTKM_TEST_ASSERT(test_equal_portals(connectionSum.ReadPortal(), expectedSum.ReadPortal()),
"Incorrect sum of indices.");
}
template <typename CellSetType,
typename ShapeArrayType,
typename NumIndicesArrayType,
typename ConnectionSumArrayType>
VTKM_CONT void TryPointConnectivity(const CellSetType& cellSet,
const ShapeArrayType& expectedShapeIds,
const NumIndicesArrayType& expectedNumberOfIndices,
const ConnectionSumArrayType& expectedSum)
{
std::cout << " trying cell to point connectivity" << std::endl;
vtkm::cont::ArrayHandle<vtkm::Id> numberOfElements;
vtkm::cont::ArrayHandle<vtkm::UInt8> shapeIds;
vtkm::cont::ArrayHandle<vtkm::IdComponent> numberOfIndices;
vtkm::cont::ArrayHandle<vtkm::Id> connectionSum;
TestWholeCellSetIn::RunPoints(
&cellSet, numberOfElements, shapeIds, numberOfIndices, connectionSum);
std::cout << " Number of elements: " << numberOfElements.ReadPortal().Get(0) << std::endl;
VTKM_TEST_ASSERT(test_equal_portals(numberOfElements.ReadPortal(),
vtkm::cont::make_ArrayHandleConstant(
cellSet.GetNumberOfPoints(), cellSet.GetNumberOfPoints())
.ReadPortal()),
"Incorrect number of elements.");
std::cout << " Shape Ids: ";
vtkm::cont::printSummary_ArrayHandle(shapeIds, std::cout, true);
VTKM_TEST_ASSERT(test_equal_portals(shapeIds.ReadPortal(), expectedShapeIds.ReadPortal()),
"Incorrect shape Ids.");
std::cout << " Number of indices: ";
vtkm::cont::printSummary_ArrayHandle(numberOfIndices, std::cout, true);
VTKM_TEST_ASSERT(
test_equal_portals(numberOfIndices.ReadPortal(), expectedNumberOfIndices.ReadPortal()),
"Incorrect number of indices.");
std::cout << " Sum of indices: ";
vtkm::cont::printSummary_ArrayHandle(connectionSum, std::cout, true);
VTKM_TEST_ASSERT(test_equal_portals(connectionSum.ReadPortal(), expectedSum.ReadPortal()),
"Incorrect sum of indices.");
}
VTKM_CONT
void TryExplicitGrid()
{
std::cout << "Testing explicit grid." << std::endl;
vtkm::cont::DataSet dataSet = vtkm::cont::testing::MakeTestDataSet().Make3DExplicitDataSet5();
vtkm::cont::CellSetExplicit<> cellSet;
dataSet.GetCellSet().CopyTo(cellSet);
vtkm::UInt8 expectedCellShapes[] = { vtkm::CELL_SHAPE_HEXAHEDRON,
vtkm::CELL_SHAPE_PYRAMID,
vtkm::CELL_SHAPE_TETRA,
vtkm::CELL_SHAPE_WEDGE };
vtkm::IdComponent expectedCellNumIndices[] = { 8, 5, 4, 6 };
vtkm::Id expectedCellIndexSum[] = { 28, 22, 29, 41 };
vtkm::Id numCells = cellSet.GetNumberOfCells();
TryCellConnectivity(
cellSet,
vtkm::cont::make_ArrayHandle(expectedCellShapes, numCells, vtkm::CopyFlag::Off),
vtkm::cont::make_ArrayHandle(expectedCellNumIndices, numCells, vtkm::CopyFlag::Off),
vtkm::cont::make_ArrayHandle(expectedCellIndexSum, numCells, vtkm::CopyFlag::Off));
vtkm::IdComponent expectedPointNumIndices[] = { 1, 2, 2, 1, 2, 4, 4, 2, 2, 1, 2 };
vtkm::Id expectedPointIndexSum[] = { 0, 1, 1, 0, 3, 6, 6, 3, 3, 3, 5 };
vtkm::Id numPoints = cellSet.GetNumberOfPoints();
TryPointConnectivity(
cellSet,
vtkm::cont::make_ArrayHandleConstant(vtkm::CellShapeTagVertex::Id, numPoints),
vtkm::cont::make_ArrayHandle(expectedPointNumIndices, numPoints, vtkm::CopyFlag::Off),
vtkm::cont::make_ArrayHandle(expectedPointIndexSum, numPoints, vtkm::CopyFlag::Off));
}
VTKM_CONT
void TryCellSetPermutation()
{
std::cout << "Testing permutation grid." << std::endl;
vtkm::cont::DataSet dataSet = vtkm::cont::testing::MakeTestDataSet().Make3DExplicitDataSet5();
vtkm::cont::CellSetExplicit<> originalCellSet;
dataSet.GetCellSet().CopyTo(originalCellSet);
vtkm::Id permutationArray[] = { 2, 0, 1 };
vtkm::cont::CellSetPermutation<vtkm::cont::CellSetExplicit<>, vtkm::cont::ArrayHandle<vtkm::Id>>
cellSet(vtkm::cont::make_ArrayHandle(permutationArray, 3, vtkm::CopyFlag::Off),
originalCellSet);
vtkm::UInt8 expectedCellShapes[] = { vtkm::CELL_SHAPE_TETRA,
vtkm::CELL_SHAPE_HEXAHEDRON,
vtkm::CELL_SHAPE_PYRAMID };
vtkm::IdComponent expectedCellNumIndices[] = { 4, 8, 5 };
vtkm::Id expectedCellIndexSum[] = { 29, 28, 22 };
vtkm::Id numCells = cellSet.GetNumberOfCells();
TryCellConnectivity(
cellSet,
vtkm::cont::make_ArrayHandle(expectedCellShapes, numCells, vtkm::CopyFlag::Off),
vtkm::cont::make_ArrayHandle(expectedCellNumIndices, numCells, vtkm::CopyFlag::Off),
vtkm::cont::make_ArrayHandle(expectedCellIndexSum, numCells, vtkm::CopyFlag::Off));
// Permutation cell set does not support cell to point connectivity.
}
VTKM_CONT
void TryStructuredGrid3D()
{
std::cout << "Testing 3D structured grid." << std::endl;
vtkm::cont::DataSet dataSet = vtkm::cont::testing::MakeTestDataSet().Make3DUniformDataSet0();
vtkm::cont::CellSetStructured<3> cellSet;
dataSet.GetCellSet().CopyTo(cellSet);
vtkm::Id expectedCellIndexSum[4] = { 40, 48, 88, 96 };
vtkm::Id numCells = cellSet.GetNumberOfCells();
TryCellConnectivity(
cellSet,
vtkm::cont::ArrayHandleConstant<vtkm::UInt8>(vtkm::CELL_SHAPE_HEXAHEDRON, numCells),
vtkm::cont::ArrayHandleConstant<vtkm::IdComponent>(8, numCells),
vtkm::cont::make_ArrayHandle(expectedCellIndexSum, numCells, vtkm::CopyFlag::Off));
vtkm::IdComponent expectedPointNumIndices[18] = { 1, 2, 1, 1, 2, 1, 2, 4, 2,
2, 4, 2, 1, 2, 1, 1, 2, 1 };
vtkm::Id expectedPointIndexSum[18] = { 0, 1, 1, 0, 1, 1, 2, 6, 4, 2, 6, 4, 2, 5, 3, 2, 5, 3 };
vtkm::Id numPoints = cellSet.GetNumberOfPoints();
TryPointConnectivity(
cellSet,
vtkm::cont::ArrayHandleConstant<vtkm::UInt8>(vtkm::CELL_SHAPE_VERTEX, numPoints),
vtkm::cont::make_ArrayHandle(expectedPointNumIndices, numPoints, vtkm::CopyFlag::Off),
vtkm::cont::make_ArrayHandle(expectedPointIndexSum, numPoints, vtkm::CopyFlag::Off));
}
VTKM_CONT
void TryStructuredGrid2D()
{
std::cout << "Testing 2D structured grid." << std::endl;
vtkm::cont::DataSet dataSet = vtkm::cont::testing::MakeTestDataSet().Make2DUniformDataSet0();
vtkm::cont::CellSetStructured<2> cellSet;
dataSet.GetCellSet().CopyTo(cellSet);
vtkm::Id expectedCellIndexSum[2] = { 8, 12 };
vtkm::Id numCells = cellSet.GetNumberOfCells();
TryCellConnectivity(
cellSet,
vtkm::cont::ArrayHandleConstant<vtkm::UInt8>(vtkm::CELL_SHAPE_QUAD, numCells),
vtkm::cont::ArrayHandleConstant<vtkm::IdComponent>(4, numCells),
vtkm::cont::make_ArrayHandle(expectedCellIndexSum, numCells, vtkm::CopyFlag::Off));
vtkm::IdComponent expectedPointNumIndices[6] = { 1, 2, 1, 1, 2, 1 };
vtkm::Id expectedPointIndexSum[6] = { 0, 1, 1, 0, 1, 1 };
vtkm::Id numPoints = cellSet.GetNumberOfPoints();
TryPointConnectivity(
cellSet,
vtkm::cont::ArrayHandleConstant<vtkm::UInt8>(vtkm::CELL_SHAPE_VERTEX, numPoints),
vtkm::cont::make_ArrayHandle(expectedPointNumIndices, numPoints, vtkm::CopyFlag::Off),
vtkm::cont::make_ArrayHandle(expectedPointIndexSum, numPoints, vtkm::CopyFlag::Off));
}
VTKM_CONT
void TryStructuredGrid1D()
{
std::cout << "Testing 1D structured grid." << std::endl;
vtkm::cont::DataSet dataSet = vtkm::cont::testing::MakeTestDataSet().Make1DUniformDataSet0();
vtkm::cont::CellSetStructured<1> cellSet;
dataSet.GetCellSet().CopyTo(cellSet);
vtkm::Id expectedCellIndexSum[5] = { 1, 3, 5, 7, 9 };
vtkm::Id numCells = cellSet.GetNumberOfCells();
TryCellConnectivity(
cellSet,
vtkm::cont::ArrayHandleConstant<vtkm::UInt8>(vtkm::CELL_SHAPE_LINE, numCells),
vtkm::cont::ArrayHandleConstant<vtkm::IdComponent>(2, numCells),
vtkm::cont::make_ArrayHandle(expectedCellIndexSum, numCells, vtkm::CopyFlag::Off));
vtkm::IdComponent expectedPointNumIndices[6] = { 1, 2, 2, 2, 2, 1 };
vtkm::Id expectedPointIndexSum[6] = { 0, 1, 3, 5, 7, 4 };
vtkm::Id numPoints = cellSet.GetNumberOfPoints();
TryPointConnectivity(
cellSet,
vtkm::cont::ArrayHandleConstant<vtkm::UInt8>(vtkm::CELL_SHAPE_VERTEX, numPoints),
vtkm::cont::make_ArrayHandle(expectedPointNumIndices, numPoints, vtkm::CopyFlag::Off),
vtkm::cont::make_ArrayHandle(expectedPointIndexSum, numPoints, vtkm::CopyFlag::Off));
}
VTKM_CONT
void RunWholeCellSetInTests()
{
TryExplicitGrid();
TryCellSetPermutation();
TryStructuredGrid3D();
TryStructuredGrid2D();
TryStructuredGrid1D();
}
int UnitTestWholeCellSetIn(int argc, char* argv[])
{
return vtkm::cont::testing::Testing::Run(RunWholeCellSetInTests, argc, argv);
}