vtk-m/vtkm/cont/testing/UnitTestArrayHandleXGCCoordinates.cxx
Kenneth Moreland 163d591795 Add DEVICE_SOURCES to vtkm_unit_tests
The `vtkm_unit_tests` function in the CMake build now allows you to specify
which files need to be compiled with a device compiler using the
`DEVICE_SOURCES` argument. Previously, the only way to specify that unit
tests needed to be compiled with a device compiler was to use the
`ALL_BACKENDS` argument, which would automatically compile everything with
the device compiler as well as test the code on all backends.
`ALL_BACKENDS` is still supported, but it no longer changes the sources to
be compiled with the device compiler.
2022-07-08 06:28:51 -06:00

143 lines
6.3 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/worklet/DispatcherMapField.h>
#include <vtkm/worklet/WorkletMapField.h>
#include <vtkm/cont/ArrayHandleXGCCoordinates.h>
#include <vtkm/cont/ArrayRangeCompute.h>
#include <vtkm/cont/testing/Testing.h>
#include <algorithm>
namespace
{
//std::vector<vtkm::Vec<vtkm::Float32,3>> points_rz = { vtkm::Vec<vtkm::Float32,3>(1.72485139f, 0.020562f, 1.73493571f),
// vtkm::Vec<vtkm::Float32,3>(0.02052826f, 1.73478011f, 0.02299051f )}; //really a vec<float,2>
std::vector<float> points_rz = { 1.72485139f, 0.020562f, 1.73493571f,
0.02052826f, 1.73478011f, 0.02299051f }; //really a vec<float,2>
std::vector<float> correct_x_coords = {
1.72485139f, 1.73493571f, 1.73478011f, 1.21965411f, 1.22678481f, 1.22667478f,
1.05616686e-16f, 1.06234173e-16f, 1.06224646e-16f, -1.21965411f, -1.22678481f, -1.22667478f,
-1.72485139f, -1.73493571f, -1.73478011f, -1.21965411f, -1.22678481f, -1.22667478f,
-3.16850059e-16f, -3.18702520e-16f, -3.18673937e-16f, 1.21965411f, 1.22678481f, 1.22667478f
};
std::vector<float> correct_y_coords = { 0.0f,
0.0f,
0.0f,
1.21965411f,
1.22678481f,
1.22667478f,
1.72485139f,
1.73493571f,
1.73478011f,
1.21965411f,
1.22678481f,
1.22667478f,
2.11233373e-16f,
2.12468346e-16f,
2.12449291e-16f,
-1.21965411f,
-1.22678481f,
-1.22667478f,
-1.72485139f,
-1.73493571f,
-1.73478011f,
-1.21965411f,
-1.22678481f,
-1.22667478f };
std::vector<float> correct_z_coords = { 0.020562f, 0.02052826f, 0.02299051f, 0.020562f,
0.02052826f, 0.02299051f, 0.020562f, 0.02052826f,
0.02299051f, 0.020562f, 0.02052826f, 0.02299051f,
0.020562f, 0.02052826f, 0.02299051f, 0.020562f,
0.02052826f, 0.02299051f, 0.020562f, 0.02052826f,
0.02299051f, 0.020562f, 0.02052826f, 0.02299051f };
struct CopyValue : public vtkm::worklet::WorkletMapField
{
typedef void ControlSignature(FieldIn, FieldOut);
typedef _2 ExecutionSignature(_1);
template <typename T>
VTKM_EXEC_CONT T&& operator()(T&& t) const
{
return std::forward<T>(t);
}
};
template <typename T, typename S>
void verify_results(vtkm::cont::ArrayHandle<vtkm::Vec<T, 3>, S> const& handle)
{
auto portal = handle.ReadPortal();
VTKM_TEST_ASSERT(portal.GetNumberOfValues() == static_cast<vtkm::Id>(correct_x_coords.size()),
"coordinate portal size is incorrect");
for (vtkm::Id i = 0; i < handle.GetNumberOfValues(); ++i)
{
auto v = portal.Get(i);
auto e = vtkm::make_Vec(correct_x_coords[static_cast<std::size_t>(i)],
correct_y_coords[static_cast<std::size_t>(i)],
correct_z_coords[static_cast<std::size_t>(i)]);
// std::cout << std::setprecision(4) << "computed " << v << " expected " << e << std::endl;
VTKM_TEST_ASSERT(test_equal(v, e), "incorrect conversion to Cartesian space");
}
}
template <typename T>
void test_range(const vtkm::cont::ArrayHandleXGCCoordinates<T>& handle)
{
auto x_result = std::minmax_element(correct_x_coords.begin(), correct_x_coords.end());
auto y_result = std::minmax_element(correct_y_coords.begin(), correct_y_coords.end());
auto z_result = std::minmax_element(correct_z_coords.begin(), correct_z_coords.end());
auto range = vtkm::cont::ArrayRangeCompute(handle);
auto rangePortal = range.ReadPortal();
VTKM_TEST_ASSERT(test_equal(rangePortal.Get(0).Min, *x_result.first), "incorrect min for x");
VTKM_TEST_ASSERT(test_equal(rangePortal.Get(0).Max, *x_result.second), "incorrect max for x");
VTKM_TEST_ASSERT(test_equal(rangePortal.Get(1).Min, *y_result.first), "incorrect min for y");
VTKM_TEST_ASSERT(test_equal(rangePortal.Get(1).Max, *y_result.second), "incorrect max for y");
VTKM_TEST_ASSERT(test_equal(rangePortal.Get(2).Min, *z_result.first), "incorrect min for z");
VTKM_TEST_ASSERT(test_equal(rangePortal.Get(2).Max, *z_result.second), "incorrect max for z");
}
int TestArrayHandleXGCCoordinates()
{
const int numPlanes = 8;
auto coords = vtkm::cont::make_ArrayHandleXGCCoordinates(
vtkm::cont::make_ArrayHandle(points_rz, vtkm::CopyFlag::Off), numPlanes, false);
VTKM_TEST_ASSERT(coords.GetNumberOfValues() ==
static_cast<vtkm::Id>(((points_rz.size() / 2) * numPlanes)),
"coordinate size is incorrect");
// Verify first that control is correct
verify_results(coords);
// Verify 1d scheduling by doing a copy to a vtkm::ArrayHandle<Vec3>
vtkm::cont::ArrayHandle<vtkm::Vec<float, 3>> output1D;
vtkm::worklet::DispatcherMapField<CopyValue> dispatcher;
dispatcher.Invoke(coords, output1D);
verify_results(output1D);
test_range(coords);
return 0;
}
} // end namespace anonymous
int UnitTestArrayHandleXGCCoordinates(int argc, char* argv[])
{
return vtkm::cont::testing::Testing::Run(TestArrayHandleXGCCoordinates, argc, argv);
}