vtk-m/vtkm/cont/testing/UnitTestArrayHandleTransform.cxx
Kenneth Moreland 05bf2e4518 Remove TestingFancyArrayHandles.h
This header file contained tests for a bunch of fancy array handles so
that they could be compiled for each device. These tests were bunched
together because they were replicated for each device implementation,
which was a hassle. However, having a bunch of tests crammed together is
problematic for a number of reasons.

The new testing no longer has a need to make a separate test for each
device. Thus, the tests for the individual devices are removed, and the
tests are split up and added to the basic vtkm_cont tests. In some
cases, individual tests already existed there as well (probably because
the developer did not see the test).
2022-07-13 11:52:11 -06:00

231 lines
7.4 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/ArrayHandleTransform.h>
#include <vtkm/VecTraits.h>
#include <vtkm/cont/ArrayHandle.h>
#include <vtkm/cont/ArrayHandleCounting.h>
#include <vtkm/cont/Invoker.h>
#include <vtkm/worklet/WorkletMapField.h>
#include <vtkm/cont/testing/Testing.h>
namespace
{
const vtkm::Id ARRAY_SIZE = 10;
struct MySquare
{
template <typename U>
VTKM_EXEC auto operator()(U u) const -> decltype(vtkm::Dot(u, u))
{
return vtkm::Dot(u, u);
}
};
struct CheckTransformWorklet : vtkm::worklet::WorkletMapField
{
using ControlSignature = void(FieldIn original, FieldIn transformed);
template <typename T, typename U>
VTKM_EXEC void operator()(const T& original, const U& transformed) const
{
if (!test_equal(transformed, MySquare{}(original)))
{
this->RaiseError("Encountered bad transformed value.");
}
}
};
template <typename OriginalArrayHandleType, typename TransformedArrayHandleType>
VTKM_CONT void CheckControlPortals(const OriginalArrayHandleType& originalArray,
const TransformedArrayHandleType& transformedArray)
{
std::cout << " Verify that the control portal works" << std::endl;
using OriginalPortalType = typename OriginalArrayHandleType::ReadPortalType;
using TransformedPortalType = typename TransformedArrayHandleType::ReadPortalType;
VTKM_TEST_ASSERT(originalArray.GetNumberOfValues() == transformedArray.GetNumberOfValues(),
"Number of values in transformed array incorrect.");
OriginalPortalType originalPortal = originalArray.ReadPortal();
TransformedPortalType transformedPortal = transformedArray.ReadPortal();
VTKM_TEST_ASSERT(originalPortal.GetNumberOfValues() == transformedPortal.GetNumberOfValues(),
"Number of values in transformed portal incorrect.");
for (vtkm::Id index = 0; index < originalArray.GetNumberOfValues(); index++)
{
using T = typename TransformedPortalType::ValueType;
typename OriginalPortalType::ValueType original = originalPortal.Get(index);
T transformed = transformedPortal.Get(index);
VTKM_TEST_ASSERT(test_equal(transformed, MySquare{}(original)), "Bad transform value.");
}
}
struct ValueScale
{
ValueScale()
: Factor(1.0)
{
}
ValueScale(vtkm::Float64 factor)
: Factor(factor)
{
}
template <typename ValueType>
VTKM_EXEC_CONT ValueType operator()(const ValueType& v) const
{
using Traits = vtkm::VecTraits<ValueType>;
using TTraits = vtkm::TypeTraits<ValueType>;
using ComponentType = typename Traits::ComponentType;
ValueType result = TTraits::ZeroInitialization();
for (vtkm::IdComponent i = 0; i < Traits::GetNumberOfComponents(v); ++i)
{
vtkm::Float64 vi = static_cast<vtkm::Float64>(Traits::GetComponent(v, i));
vtkm::Float64 ri = vi * this->Factor;
Traits::SetComponent(result, i, static_cast<ComponentType>(ri));
}
return result;
}
private:
vtkm::Float64 Factor;
};
struct PassThrough : public vtkm::worklet::WorkletMapField
{
using ControlSignature = void(FieldIn, FieldOut);
using ExecutionSignature = void(_1, _2);
template <typename InValue, typename OutValue>
VTKM_EXEC void operator()(const InValue& inValue, OutValue& outValue) const
{
outValue = inValue;
}
};
template <typename InputValueType>
struct TransformTests
{
using OutputValueType = typename vtkm::VecTraits<InputValueType>::ComponentType;
using TransformHandle =
vtkm::cont::ArrayHandleTransform<vtkm::cont::ArrayHandle<InputValueType>, MySquare>;
using CountingTransformHandle =
vtkm::cont::ArrayHandleTransform<vtkm::cont::ArrayHandleCounting<InputValueType>, MySquare>;
using Device = vtkm::cont::DeviceAdapterTagSerial;
using Algorithm = vtkm::cont::DeviceAdapterAlgorithm<Device>;
void operator()() const
{
MySquare functor;
vtkm::cont::Invoker invoke;
std::cout << "Test a transform handle with a counting handle as the values" << std::endl;
vtkm::cont::ArrayHandleCounting<InputValueType> counting = vtkm::cont::make_ArrayHandleCounting(
InputValueType(OutputValueType(0)), InputValueType(1), ARRAY_SIZE);
CountingTransformHandle countingTransformed =
vtkm::cont::make_ArrayHandleTransform(counting, functor);
CheckControlPortals(counting, countingTransformed);
std::cout << " Verify that the execution portal works" << std::endl;
invoke(CheckTransformWorklet{}, counting, countingTransformed);
std::cout << "Test a transform handle with a normal handle as the values" << std::endl;
//we are going to connect the two handles up, and than fill
//the values and make sure the transform sees the new values in the handle
vtkm::cont::ArrayHandle<InputValueType> input;
TransformHandle thandle(input, functor);
using Portal = typename vtkm::cont::ArrayHandle<InputValueType>::WritePortalType;
input.Allocate(ARRAY_SIZE);
SetPortal(input.WritePortal());
CheckControlPortals(input, thandle);
std::cout << " Verify that the execution portal works" << std::endl;
invoke(CheckTransformWorklet{}, input, thandle);
std::cout << "Modify array handle values to ensure transform gets updated" << std::endl;
{
Portal portal = input.WritePortal();
for (vtkm::Id index = 0; index < ARRAY_SIZE; ++index)
{
portal.Set(index, TestValue(index * index, InputValueType()));
}
}
CheckControlPortals(input, thandle);
std::cout << " Verify that the execution portal works" << std::endl;
invoke(CheckTransformWorklet{}, input, thandle);
std::cout << "Write to a transformed array with an inverse transform" << std::endl;
{
ValueScale scaleUp(2.0);
ValueScale scaleDown(1.0 / 2.0);
input.Allocate(ARRAY_SIZE);
SetPortal(input.WritePortal());
vtkm::cont::ArrayHandle<InputValueType> output;
auto transformed = vtkm::cont::make_ArrayHandleTransform(output, scaleUp, scaleDown);
invoke(PassThrough{}, input, transformed);
//verify that the control portal works
auto outputPortal = output.ReadPortal();
auto transformedPortal = transformed.ReadPortal();
for (vtkm::Id i = 0; i < ARRAY_SIZE; ++i)
{
const InputValueType result_v = outputPortal.Get(i);
const InputValueType correct_value = scaleDown(TestValue(i, InputValueType()));
const InputValueType control_value = transformedPortal.Get(i);
VTKM_TEST_ASSERT(test_equal(result_v, correct_value), "Transform Handle Failed");
VTKM_TEST_ASSERT(test_equal(scaleUp(result_v), control_value),
"Transform Handle Control Failed");
}
}
}
};
struct TryInputType
{
template <typename InputType>
void operator()(InputType) const
{
TransformTests<InputType>()();
}
};
void TestArrayHandleTransform()
{
vtkm::testing::Testing::TryTypes(TryInputType());
}
} // anonymous namespace
int UnitTestArrayHandleTransform(int argc, char* argv[])
{
return vtkm::cont::testing::Testing::Run(TestArrayHandleTransform, argc, argv);
}