Merge topic 'add_whole_topology_tag'

c4183cfa Refactor WholeCellSetIn to handle Point->Cell and Cell->Point
f65f5ea6 WorkletBase can now transport CellSets as a whole execution object.

Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !601
This commit is contained in:
Robert Maynard 2016-11-10 14:50:04 -05:00 committed by Kitware Robot
commit 3a9bcca016
4 changed files with 212 additions and 0 deletions

@ -23,9 +23,11 @@ set(unit_tests
UnitTestTransportArrayIn.cxx
UnitTestTransportArrayInOut.cxx
UnitTestTransportArrayOut.cxx
UnitTestTransportCellSetIn.cxx
UnitTestTransportExecObject.cxx
UnitTestTransportWholeArray.cxx
UnitTestTypeCheckArray.cxx
UnitTestTypeCheckCellSet.cxx
UnitTestTypeCheckExecObject.cxx
)

@ -0,0 +1,119 @@
//============================================================================
// 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.
//
// Copyright 2014 Sandia Corporation.
// Copyright 2014 UT-Battelle, LLC.
// Copyright 2014 Los Alamos National Security.
//
// Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
// the U.S. Government retains certain rights in this software.
//
// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National
// Laboratory (LANL), the U.S. Government retains certain rights in
// this software.
//============================================================================
#include <vtkm/cont/arg/TransportTagCellSetIn.h>
#include <vtkm/cont/CellSetExplicit.h>
#include <vtkm/exec/FunctorBase.h>
#include <vtkm/cont/serial/DeviceAdapterSerial.h>
#include <vtkm/cont/testing/Testing.h>
#include <vtkm/cont/testing/MakeTestDataSet.h>
namespace {
template<typename CellSetInType>
struct TestKernel : public vtkm::exec::FunctorBase
{
CellSetInType CellSet;
VTKM_EXEC_EXPORT
void operator()(vtkm::Id) const
{
if (this->CellSet.GetNumberOfElements() != 2)
{
this->RaiseError("Got bad number of shapes in exec cellset object.");
}
if (this->CellSet.GetNumberOfIndices(0) != 3 ||
this->CellSet.GetNumberOfIndices(1) != 4 )
{
this->RaiseError("Got bad number of Indices in exec cellset object.");
}
if (this->CellSet.GetCellShape(0).Id != 5 ||
this->CellSet.GetCellShape(1).Id != 9 )
{
this->RaiseError("Got bad cell shape in exec cellset object.");
}
}
};
template<typename Device>
void TransportWholeCellSetIn(Device)
{
//build a fake cell set
const int nVerts = 5;
typedef vtkm::Vec<vtkm::Float32,3> CoordType;
std::vector<CoordType> coords(nVerts);
coords[0] = CoordType(0, 0, 0);
coords[1] = CoordType(1, 0, 0);
coords[2] = CoordType(1, 1, 0);
coords[3] = CoordType(2, 1, 0);
coords[4] = CoordType(2, 2, 0);
CoordType coordinates[nVerts] = {
CoordType(0, 0, 0),
CoordType(1, 0, 0),
CoordType(1, 1, 0),
CoordType(2, 1, 0),
CoordType(2, 2, 0)
};
vtkm::cont::CellSetExplicit<> contObject(nVerts, "cells");
contObject.PrepareToAddCells(2, 7);
contObject.AddCell(vtkm::CELL_SHAPE_TRIANGLE, 3, vtkm::make_Vec<vtkm::Id>(0,1,2));
contObject.AddCell(vtkm::CELL_SHAPE_QUAD, 4, vtkm::make_Vec<vtkm::Id>(2,1,3,4));
contObject.CompleteAddingCells();
typedef vtkm::TopologyElementTagPoint FromType;
typedef vtkm::TopologyElementTagCell ToType;
typedef typename vtkm::cont::CellSetExplicit<>
::template ExecutionTypes< Device, FromType, ToType >
::ExecObjectType ExecObjectType;
vtkm::cont::arg::Transport<
vtkm::cont::arg::TransportTagCellSetIn<FromType,ToType>,
vtkm::cont::CellSetExplicit<>,
Device>
transport;
TestKernel<ExecObjectType> kernel;
kernel.CellSet = transport(contObject, 1);
vtkm::cont::DeviceAdapterAlgorithm<Device>::Schedule(kernel, 1);
}
void UnitTestCellSetIn()
{
std::cout << "Trying CellSetIn transport with serial device." << std::endl;
TransportWholeCellSetIn(vtkm::cont::DeviceAdapterTagSerial());
}
} // Anonymous namespace
int UnitTestTransportCellSetIn(int, char *[])
{
return vtkm::cont::testing::Testing::Run(UnitTestCellSetIn);
}

@ -0,0 +1,70 @@
//============================================================================
// 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.
//
// Copyright 2014 Sandia Corporation.
// Copyright 2014 UT-Battelle, LLC.
// Copyright 2014 Los Alamos National Security.
//
// Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
// the U.S. Government retains certain rights in this software.
//
// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National
// Laboratory (LANL), the U.S. Government retains certain rights in
// this software.
//============================================================================
#include <vtkm/cont/arg/TypeCheckTagCellSet.h>
#include <vtkm/cont/ArrayHandle.h>
#include <vtkm/cont/CellSetExplicit.h>
#include <vtkm/cont/CellSetStructured.h>
#include <vtkm/cont/testing/Testing.h>
namespace {
struct TestNotCellSet { };
void TestCheckCellSet()
{
std::cout << "Checking reporting of type checking exec object." << std::endl;
using vtkm::cont::arg::TypeCheck;
using vtkm::cont::arg::TypeCheckTagCellSet;
VTKM_TEST_ASSERT(
(TypeCheck<TypeCheckTagCellSet, vtkm::cont::CellSetExplicit<> >::value),
"Type check failed.");
VTKM_TEST_ASSERT(
(TypeCheck<TypeCheckTagCellSet, vtkm::cont::CellSetStructured<2> >::value),
"Type check failed.");
VTKM_TEST_ASSERT(
(TypeCheck<TypeCheckTagCellSet, vtkm::cont::CellSetStructured<3> >::value),
"Type check failed.");
VTKM_TEST_ASSERT(
!(TypeCheck<TypeCheckTagCellSet, TestNotCellSet>::value),
"Type check failed.");
VTKM_TEST_ASSERT(
!(TypeCheck<TypeCheckTagCellSet, vtkm::Id>::value),
"Type check failed.");
VTKM_TEST_ASSERT(
!(TypeCheck<TypeCheckTagCellSet, vtkm::cont::ArrayHandle<vtkm::Id> >::value),
"Type check failed.");
}
} // anonymous namespace
int UnitTestTypeCheckCellSet(int, char *[])
{
return vtkm::cont::testing::Testing::Run(TestCheckCellSet);
}

@ -21,6 +21,7 @@
#define vtk_m_worklet_internal_WorkletBase_h
#include <vtkm/TypeListTag.h>
#include <vtkm/TopologyElementTag.h>
#include <vtkm/exec/FunctorBase.h>
#include <vtkm/exec/arg/BasicArg.h>
@ -32,6 +33,7 @@
#include <vtkm/cont/arg/ControlSignatureTagBase.h>
#include <vtkm/cont/arg/TransportTagAtomicArray.h>
#include <vtkm/cont/arg/TransportTagCellSetIn.h>
#include <vtkm/cont/arg/TransportTagExecObject.h>
#include <vtkm/cont/arg/TransportTagWholeArrayIn.h>
#include <vtkm/cont/arg/TransportTagWholeArrayInOut.h>
@ -39,6 +41,7 @@
#include <vtkm/cont/arg/TypeCheckTagArray.h>
#include <vtkm/cont/arg/TypeCheckTagAtomicArray.h>
#include <vtkm/cont/arg/TypeCheckTagExecObject.h>
#include <vtkm/cont/arg/TypeCheckTagCellSet.h>
#include <vtkm/worklet/ScatterIdentity.h>
@ -277,6 +280,24 @@ public:
typedef vtkm::exec::arg::FetchTagExecObject FetchTag;
};
/// \c ControlSignature tag for whole input topology.
///
/// The \c WholeCellSetIn control signature tag specifies an \c CellSet
/// passed to the \c Invoke operation of the dispatcher. This is converted to
/// a \c vtkm::exec::Connectivity* object and passed to the appropriate worklet
/// operator argument with one of the default args. This can be used to
/// global lookup for arbitrary topology information
using Cell = vtkm::TopologyElementTagCell;
using Point = vtkm::TopologyElementTagPoint;
template<typename FromType=Point, typename ToType=Cell>
struct WholeCellSetIn : vtkm::cont::arg::ControlSignatureTagBase {
typedef vtkm::cont::arg::TypeCheckTagCellSet TypeCheckTag;
typedef vtkm::cont::arg::TransportTagCellSetIn<FromType,ToType> TransportTag;
typedef vtkm::exec::arg::FetchTagExecObject FetchTag;
};
/// \brief Creates a \c ThreadIndices object.
///
/// Worklet types can add additional indices by returning different object