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

53 lines
1.5 KiB
C++
Raw Permalink 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/WorkIndex.h>
#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
{
void TestWorkIndexFetch()
{
std::cout << "Trying WorkIndex fetch." << std::endl;
using FetchType =
vtkm::exec::arg::Fetch<vtkm::exec::arg::FetchTagArrayDirectIn, // Not used but probably common.
vtkm::exec::arg::AspectTagWorkIndex,
vtkm::internal::NullType>;
FetchType fetch;
for (vtkm::Id index = 0; index < 10; index++)
{
vtkm::exec::arg::ThreadIndicesTesting indices(index);
vtkm::Id value = fetch.Load(indices, vtkm::internal::NullType());
2017-05-18 14:29:41 +00:00
VTKM_TEST_ASSERT(value == index, "Fetch did not give correct work index.");
value++;
// This should be a no-op.
fetch.Store(indices, vtkm::internal::NullType(), value);
}
}
} // anonymous namespace
int UnitTestFetchWorkIndex(int argc, char* argv[])
{
return vtkm::testing::Testing::Run(TestWorkIndexFetch, argc, argv);
}