vtk-m/vtkm/exec/testing/UnitTestFetchArrayDirectIn.cxx

87 lines
2.1 KiB
C++
Raw Normal View History

//============================================================================
// Copyright (c) Kitware, Inc.
// All rights reserved.
// See LICENSE.txt for details.
2019-04-15 23:24:21 +00:00
//
// 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/exec/arg/FetchTagArrayDirectIn.h>
#include <vtkm/exec/testing/ThreadIndicesTesting.h>
#include <vtkm/testing/Testing.h>
2017-05-18 14:29:41 +00:00
namespace
{
static constexpr vtkm::Id ARRAY_SIZE = 10;
2017-05-18 14:29:41 +00:00
template <typename T>
struct TestPortal
{
using ValueType = T;
VTKM_EXEC_CONT
vtkm::Id GetNumberOfValues() const { return ARRAY_SIZE; }
VTKM_EXEC_CONT
2017-05-18 14:29:41 +00:00
ValueType Get(vtkm::Id index) const
{
VTKM_TEST_ASSERT(index >= 0, "Bad portal index.");
VTKM_TEST_ASSERT(index < this->GetNumberOfValues(), "Bad portal index.");
return TestValue(index, ValueType());
}
};
2017-05-18 14:29:41 +00:00
template <typename T>
struct FetchArrayDirectInTests
{
void operator()()
{
TestPortal<T> execObject;
using FetchType = vtkm::exec::arg::Fetch<vtkm::exec::arg::FetchTagArrayDirectIn,
vtkm::exec::arg::AspectTagDefault,
TestPortal<T>>;
FetchType fetch;
for (vtkm::Id index = 0; index < ARRAY_SIZE; index++)
{
vtkm::exec::arg::ThreadIndicesTesting indices(index);
T value = fetch.Load(indices, execObject);
2017-05-18 14:29:41 +00:00
VTKM_TEST_ASSERT(test_equal(value, TestValue(index, T())), "Got invalid value from Load.");
2017-05-18 14:29:41 +00:00
value = T(T(2) * value);
// This should be a no-op, but we should be able to call it.
fetch.Store(indices, execObject, value);
}
}
};
struct TryType
{
2017-05-18 14:29:41 +00:00
template <typename T>
void operator()(T) const
{
FetchArrayDirectInTests<T>()();
}
};
void TestExecObjectFetch()
{
vtkm::testing::Testing::TryTypes(TryType());
}
} // anonymous namespace
int UnitTestFetchArrayDirectIn(int argc, char* argv[])
{
return vtkm::testing::Testing::Run(TestExecObjectFetch, argc, argv);
}