vtk-m/vtkm/filter/testing/UnitTestVectorMagnitudeFilter.cxx
Kenneth Moreland ec34cb56c4 Use new ways to get array portal in control environment
Also fix deadlocks that occur when portals are not destroyed
in time.
2020-02-26 13:10:46 -07:00

61 lines
2.1 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/testing/MakeTestDataSet.h>
#include <vtkm/cont/testing/Testing.h>
#include <vtkm/filter/VectorMagnitude.h>
#include <vector>
namespace
{
void TestVectorMagnitude()
{
std::cout << "Testing VectorMagnitude Filter" << std::endl;
vtkm::cont::testing::MakeTestDataSet testDataSet;
vtkm::cont::DataSet dataSet = testDataSet.Make3DUniformDataSet0();
const int nVerts = 18;
vtkm::Float64 fvars[nVerts] = { 10.1, 20.1, 30.1, 40.1, 50.2, 60.2, 70.2, 80.2, 90.3,
100.3, 110.3, 120.3, 130.4, 140.4, 150.4, 160.4, 170.5, 180.5 };
std::vector<vtkm::Vec3f_64> fvec(nVerts);
for (std::size_t i = 0; i < fvec.size(); ++i)
{
fvec[i] = vtkm::make_Vec(fvars[i], fvars[i], fvars[i]);
}
vtkm::cont::ArrayHandle<vtkm::Vec3f_64> finput = vtkm::cont::make_ArrayHandle(fvec);
vtkm::cont::DataSetFieldAdd::AddPointField(dataSet, "double_vec_pointvar", finput);
vtkm::filter::VectorMagnitude vm;
vm.SetActiveField("double_vec_pointvar");
auto result = vm.Execute(dataSet);
VTKM_TEST_ASSERT(result.HasPointField("magnitude"), "Output field missing.");
vtkm::cont::ArrayHandle<vtkm::Float64> resultArrayHandle;
result.GetPointField("magnitude").GetData().CopyTo(resultArrayHandle);
for (vtkm::Id i = 0; i < resultArrayHandle.GetNumberOfValues(); ++i)
{
VTKM_TEST_ASSERT(
test_equal(std::sqrt(3 * fvars[i] * fvars[i]), resultArrayHandle.ReadPortal().Get(i)),
"Wrong result for Magnitude worklet");
}
}
}
int UnitTestVectorMagnitudeFilter(int argc, char* argv[])
{
return vtkm::cont::testing::Testing::Run(TestVectorMagnitude, argc, argv);
}