Merge branch 'add-compute-bounds' into 'master'

Add compute bounds to Fields

See merge request !88
This commit is contained in:
Sujin Philip 2015-07-22 14:26:48 -04:00
commit c7d3d0df5c
8 changed files with 514 additions and 16 deletions

@ -20,7 +20,13 @@
#ifndef vtk_m_cont_Field_h
#define vtk_m_cont_Field_h
#include <vtkm/Types.h>
#include <vtkm/Math.h>
#include <vtkm/VecTraits.h>
#include <vtkm/cont/ArrayHandle.h>
#include <vtkm/cont/ArrayHandleTransform.h>
#include <vtkm/cont/DeviceAdapterAlgorithm.h>
#include <vtkm/cont/DynamicArrayHandle.h>
#include <vtkm/cont/internal/ArrayPortalFromIterators.h>
@ -28,6 +34,165 @@
namespace vtkm {
namespace cont {
namespace internal {
template<vtkm::Id NumberOfComponents>
class InputToOutputTypeTransform
{
public:
typedef vtkm::Vec<vtkm::Float64, NumberOfComponents> ResultType;
typedef vtkm::Pair<ResultType, ResultType> MinMaxPairType;
template<typename ValueType>
VTKM_EXEC_EXPORT
MinMaxPairType operator()(const ValueType &value) const
{
ResultType input;
for (vtkm::Id i = 0; i < NumberOfComponents; ++i)
{
input[i] = static_cast<vtkm::Float64>(
vtkm::VecTraits<ValueType>::GetComponent(value, i));
}
return make_Pair(input, input);
}
};
template<vtkm::Id NumberOfComponents>
class MinMax
{
public:
typedef vtkm::Vec<vtkm::Float64, NumberOfComponents> ResultType;
typedef vtkm::Pair<ResultType, ResultType> MinMaxPairType;
VTKM_EXEC_EXPORT
MinMaxPairType operator()(const MinMaxPairType &v1, const MinMaxPairType &v2) const
{
MinMaxPairType result;
for (vtkm::Id i = 0; i < NumberOfComponents; ++i)
{
result.first[i] = vtkm::Min(v1.first[i], v2.first[i]);
result.second[i] = vtkm::Max(v1.second[i], v2.second[i]);
}
return result;
}
};
enum
{
MAX_NUMBER_OF_COMPONENTS = 10
};
template<vtkm::Id NumberOfComponents, typename ComputeBoundsClass>
class SelectNumberOfComponents
{
public:
static void Execute(vtkm::Id components, const vtkm::cont::DynamicArrayHandle &data,
ArrayHandle<vtkm::Float64> &bounds)
{
if (components == NumberOfComponents)
{
ComputeBoundsClass::template CallBody<NumberOfComponents>(data, bounds);
}
else
{
SelectNumberOfComponents<NumberOfComponents+1, ComputeBoundsClass>::Execute(
components, data, bounds);
}
}
};
template<typename ComputeBoundsClass>
class SelectNumberOfComponents<MAX_NUMBER_OF_COMPONENTS, ComputeBoundsClass>
{
public:
static void Execute(vtkm::Id, const vtkm::cont::DynamicArrayHandle&,
ArrayHandle<vtkm::Float64>&)
{
throw vtkm::cont::ErrorControlInternal(
"Number of components in array greater than expected maximum.");
}
};
template<typename DeviceAdapterTag, typename TypeList, typename StorageList>
class ComputeBounds
{
private:
template<vtkm::Id NumberOfComponents>
class Body
{
public:
Body(ArrayHandle<vtkm::Float64> *bounds) : Bounds(bounds) {}
template<typename ArrayHandleType>
void operator()(const ArrayHandleType &data) const
{
typedef vtkm::cont::DeviceAdapterAlgorithm<DeviceAdapterTag> Algorithm;
typedef vtkm::Vec<vtkm::Float64, NumberOfComponents> ResultType;
typedef vtkm::Pair<ResultType, ResultType> MinMaxPairType;
MinMaxPairType initialValue = make_Pair(ResultType(vtkm::Infinity64()),
ResultType(vtkm::NegativeInfinity64()));
vtkm::cont::ArrayHandleTransform<MinMaxPairType, ArrayHandleType,
InputToOutputTypeTransform<NumberOfComponents> > input(data);
MinMaxPairType result = Algorithm::Reduce(input, initialValue,
MinMax<NumberOfComponents>());
this->Bounds->Allocate(NumberOfComponents * 2);
for (vtkm::Id i = 0; i < NumberOfComponents; ++i)
{
this->Bounds->GetPortalControl().Set(i * 2, result.first[i]);
this->Bounds->GetPortalControl().Set(i * 2 + 1, result.second[i]);
}
}
private:
ArrayHandle<vtkm::Float64> *Bounds;
};
public:
template<vtkm::Id NumberOfComponents>
static void CallBody(const vtkm::cont::DynamicArrayHandle &data,
ArrayHandle<vtkm::Float64> &bounds)
{
Body<NumberOfComponents> cb(&bounds);
data.CastAndCall(cb, TypeList(), StorageList());
}
static void DoCompute(const DynamicArrayHandle &data,
ArrayHandle<vtkm::Float64> &bounds)
{
typedef ComputeBounds<DeviceAdapterTag, TypeList, StorageList> SelfType;
VTKM_IS_DEVICE_ADAPTER_TAG(DeviceAdapterTag);
vtkm::Id numberOfComponents = data.GetNumberOfComponents();
switch(numberOfComponents)
{
case 1:
CallBody<1>(data, bounds);
break;
case 2:
CallBody<2>(data, bounds);
break;
case 3:
CallBody<3>(data, bounds);
break;
case 4:
CallBody<4>(data, bounds);
break;
default:
SelectNumberOfComponents<5, SelfType>::Execute(numberOfComponents, data,
bounds);
break;
}
}
};
} // namespace internal
/// A \c Field encapsulates an array on some piece of the mesh, such as
/// the points, a cell set, a node logical dimension, or the whole mesh.
///
@ -48,7 +213,7 @@ public:
Field(std::string name, int order, Association association,
vtkm::cont::DynamicArrayHandle &data)
: Name(name), Order(order), AssocTag(association), AssocCellsetName(),
AssocLogicalDim(-1), Data(data)
AssocLogicalDim(-1), Data(data), Bounds(), ModifiedFlag(true)
{
VTKM_ASSERT_CONT(this->AssocTag == ASSOC_WHOLE_MESH ||
this->AssocTag == ASSOC_POINTS);
@ -58,7 +223,7 @@ public:
VTKM_CONT_EXPORT
Field(std::string name, int order, Association association, ArrayHandle<T> &data)
: Name(name), Order(order), AssocTag(association), AssocCellsetName(),
AssocLogicalDim(-1)
AssocLogicalDim(-1), Bounds(), ModifiedFlag(true)
{
VTKM_ASSERT_CONT(this->AssocTag == ASSOC_WHOLE_MESH ||
this->AssocTag == ASSOC_POINTS);
@ -70,7 +235,7 @@ public:
Field(std::string name, int order, Association association,
const std::vector<T> &data)
: Name(name), Order(order), AssocTag(association), AssocCellsetName(),
AssocLogicalDim(-1)
AssocLogicalDim(-1), Bounds(), ModifiedFlag(true)
{
VTKM_ASSERT_CONT(this->AssocTag == ASSOC_WHOLE_MESH ||
this->AssocTag == ASSOC_POINTS);
@ -82,7 +247,7 @@ public:
Field(std::string name, int order, Association association, const T *data,
vtkm::Id nvals)
: Name(name), Order(order), AssocTag(association), AssocCellsetName(),
AssocLogicalDim(-1)
AssocLogicalDim(-1), Bounds(), ModifiedFlag(true)
{
VTKM_ASSERT_CONT(this->AssocTag == ASSOC_WHOLE_MESH ||
this->AssocTag == ASSOC_POINTS);
@ -93,7 +258,8 @@ public:
VTKM_CONT_EXPORT
Field(std::string name, int order, Association association, T)
: Name(name), Order(order), AssocTag(association), AssocCellsetName(),
AssocLogicalDim(-1), Data(vtkm::cont::ArrayHandle<T>())
AssocLogicalDim(-1), Data(vtkm::cont::ArrayHandle<T>()), Bounds(),
ModifiedFlag(true)
{
VTKM_ASSERT_CONT(this->AssocTag == ASSOC_WHOLE_MESH ||
this->AssocTag == ASSOC_POINTS);
@ -104,7 +270,7 @@ public:
Field(std::string name, int order, Association association,
const std::string& cellSetName, vtkm::cont::DynamicArrayHandle &data)
: Name(name), Order(order), AssocTag(association), AssocCellsetName(cellSetName),
AssocLogicalDim(-1), Data(data)
AssocLogicalDim(-1), Data(data), Bounds(), ModifiedFlag(true)
{
VTKM_ASSERT_CONT(this->AssocTag == ASSOC_CELL_SET);
}
@ -114,7 +280,7 @@ public:
Field(std::string name, int order, Association association,
const std::string& cellSetName, ArrayHandle<T> &data)
: Name(name), Order(order), AssocTag(association), AssocCellsetName(cellSetName),
AssocLogicalDim(-1)
AssocLogicalDim(-1), Bounds(), ModifiedFlag(true)
{
VTKM_ASSERT_CONT(this->AssocTag == ASSOC_CELL_SET);
this->SetData(data);
@ -125,7 +291,7 @@ public:
Field(std::string name, int order, Association association,
const std::string& cellSetName, const std::vector<T> &data)
: Name(name), Order(order), AssocTag(association), AssocCellsetName(cellSetName),
AssocLogicalDim(-1)
AssocLogicalDim(-1), Bounds(), ModifiedFlag(true)
{
VTKM_ASSERT_CONT(this->AssocTag == ASSOC_CELL_SET);
this->CopyData(&data[0], data.size());
@ -136,7 +302,7 @@ public:
Field(std::string name, int order, Association association,
const std::string& cellSetName, const T *data, vtkm::Id nvals)
: Name(name), Order(order), AssocTag(association), AssocCellsetName(cellSetName),
AssocLogicalDim(-1)
AssocLogicalDim(-1), Bounds(), ModifiedFlag(true)
{
VTKM_ASSERT_CONT(this->AssocTag == ASSOC_CELL_SET);
this->CopyData(data, nvals);
@ -147,7 +313,8 @@ public:
Field(std::string name, int order, Association association,
const std::string& cellSetName, T)
: Name(name), Order(order), AssocTag(association), AssocCellsetName(cellSetName),
AssocLogicalDim(-1), Data(vtkm::cont::ArrayHandle<T>())
AssocLogicalDim(-1), Data(vtkm::cont::ArrayHandle<T>()), Bounds(),
ModifiedFlag(true)
{
VTKM_ASSERT_CONT(this->AssocTag == ASSOC_CELL_SET);
}
@ -157,7 +324,7 @@ public:
Field(std::string name, int order, Association association, int logicalDim,
vtkm::cont::DynamicArrayHandle &data)
: Name(name), Order(order), AssocTag(association), AssocCellsetName(),
AssocLogicalDim(logicalDim), Data(data)
AssocLogicalDim(logicalDim), Data(data), Bounds(), ModifiedFlag(true)
{
VTKM_ASSERT_CONT(this->AssocTag == ASSOC_LOGICAL_DIM);
}
@ -167,7 +334,7 @@ public:
Field(std::string name, int order, Association association, int logicalDim,
ArrayHandle<T> &data)
: Name(name), Order(order), AssocTag(association), AssocCellsetName(),
AssocLogicalDim(logicalDim)
AssocLogicalDim(logicalDim), Bounds(), ModifiedFlag(true)
{
VTKM_ASSERT_CONT(this->AssocTag == ASSOC_LOGICAL_DIM);
this->SetData(data);
@ -178,7 +345,7 @@ public:
Field(std::string name, int order, Association association, int logicalDim,
const std::vector<T> &data)
: Name(name), Order(order), AssocTag(association), AssocCellsetName(),
AssocLogicalDim(logicalDim)
AssocLogicalDim(logicalDim), Bounds(), ModifiedFlag(true)
{
VTKM_ASSERT_CONT(this->AssocTag == ASSOC_LOGICAL_DIM);
this->CopyData(&data[0], data.size());
@ -189,7 +356,7 @@ public:
Field(std::string name, int order, Association association, int logicalDim,
const T *data, vtkm::Id nvals)
: Name(name), Order(order), AssocTag(association), AssocCellsetName(),
AssocLogicalDim(logicalDim)
AssocLogicalDim(logicalDim), Bounds(), ModifiedFlag(true)
{
VTKM_ASSERT_CONT(this->AssocTag == ASSOC_LOGICAL_DIM);
this->CopyData(data, nvals);
@ -199,7 +366,8 @@ public:
VTKM_CONT_EXPORT
Field(std::string name, int order, Association association, int logicalDim, T)
: Name(name), Order(order), AssocTag(association), AssocCellsetName(),
AssocLogicalDim(logicalDim), Data(vtkm::cont::ArrayHandle<T>())
AssocLogicalDim(logicalDim), Data(vtkm::cont::ArrayHandle<T>()), Bounds(),
ModifiedFlag(true)
{
VTKM_ASSERT_CONT(this->AssocTag == ASSOC_LOGICAL_DIM);
}
@ -240,9 +408,72 @@ public:
return this->Data;
}
template<typename DeviceAdapterTag, typename TypeList, typename StorageList>
VTKM_CONT_EXPORT
const vtkm::cont::ArrayHandle<vtkm::Float64>& GetBounds(DeviceAdapterTag,
TypeList,
StorageList) const
{
if (this->ModifiedFlag)
{
internal::ComputeBounds<DeviceAdapterTag, TypeList, StorageList>::DoCompute(
this->Data, this->Bounds);
this->ModifiedFlag = false;
}
return this->Bounds;
}
template<typename DeviceAdapterTag, typename TypeList, typename StorageList>
VTKM_CONT_EXPORT
void GetBounds(vtkm::Float64 *bounds, DeviceAdapterTag, TypeList, StorageList) const
{
this->GetBounds(DeviceAdapterTag(), TypeList(), StorageList());
vtkm::Id length = this->Bounds.GetNumberOfValues();
for (vtkm::Id i = 0; i < length; ++i)
{
bounds[i] = this->Bounds.GetPortalConstControl().Get(i);
}
}
template<typename DeviceAdapterTag, typename TypeList>
VTKM_CONT_EXPORT
const vtkm::cont::ArrayHandle<vtkm::Float64>& GetBounds(DeviceAdapterTag,
TypeList) const
{
return this->GetBounds(DeviceAdapterTag(), TypeList(),
VTKM_DEFAULT_STORAGE_LIST_TAG());
}
template<typename DeviceAdapterTag, typename TypeList>
VTKM_CONT_EXPORT
void GetBounds(vtkm::Float64 *bounds, DeviceAdapterTag, TypeList) const
{
this->GetBounds(bounds, DeviceAdapterTag(), TypeList(),
VTKM_DEFAULT_STORAGE_LIST_TAG());
}
template<typename DeviceAdapterTag>
VTKM_CONT_EXPORT
const vtkm::cont::ArrayHandle<vtkm::Float64>& GetBounds(DeviceAdapterTag) const
{
return this->GetBounds(DeviceAdapterTag(), VTKM_DEFAULT_TYPE_LIST_TAG(),
VTKM_DEFAULT_STORAGE_LIST_TAG());
}
template<typename DeviceAdapterTag>
VTKM_CONT_EXPORT
void GetBounds(vtkm::Float64 *bounds, DeviceAdapterTag) const
{
this->GetBounds(bounds, DeviceAdapterTag(), VTKM_DEFAULT_TYPE_LIST_TAG(),
VTKM_DEFAULT_STORAGE_LIST_TAG());
}
VTKM_CONT_EXPORT
vtkm::cont::DynamicArrayHandle &GetData()
{
this->ModifiedFlag = true;
return this->Data;
}
@ -251,6 +482,7 @@ public:
void SetData(vtkm::cont::ArrayHandle<T> &newdata)
{
this->Data = newdata;
this->ModifiedFlag = true;
}
template <typename T>
@ -268,6 +500,7 @@ public:
//assign to the dynamic array handle
this->Data = tmp;
this->ModifiedFlag = true;
}
VTKM_CONT_EXPORT
@ -298,6 +531,8 @@ private:
int AssocLogicalDim; ///< only populate if assoc is logical dim
vtkm::cont::DynamicArrayHandle Data;
mutable vtkm::cont::ArrayHandle<vtkm::Float64> Bounds;
mutable bool ModifiedFlag;
};

@ -19,6 +19,7 @@
##============================================================================
set(unit_tests
UnitTestComputeBoundsCuda.cu
UnitTestCudaArrayHandle.cu
UnitTestCudaArrayHandleFancy.cu
UnitTestCudaMath.cu

@ -0,0 +1,32 @@
//============================================================================
// 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.
//============================================================================
#define BOOST_SP_DISABLE_THREADS
#include <vtkm/cont/cuda/DeviceAdapterCuda.h>
#include <vtkm/cont/cuda/internal/testing/Testing.h>
#include <vtkm/cont/testing/TestingComputeBounds.h>
int UnitTestComputeBoundsCuda(int, char *[])
{
int result = vtkm::cont::testing::TestingComputeBounds
<vtkm::cont::DeviceAdapterTagCuda>::Run();
return vtkm::cont::cuda::internal::Testing::CheckCudaBeforeExit(result);
}

@ -19,6 +19,7 @@
##============================================================================
set(unit_tests
UnitTestComputeBoundsTBB.cxx
UnitTestDeviceAdapterTBB.cxx
UnitTestTBBArrayHandle.cxx
UnitTestTBBArrayHandleFancy.cxx

@ -0,0 +1,29 @@
//============================================================================
// 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/tbb/DeviceAdapterTBB.h>
#include <vtkm/cont/testing/TestingComputeBounds.h>
int UnitTestComputeBoundsTBB(int, char *[])
{
return vtkm::cont::testing::TestingComputeBounds
<vtkm::cont::DeviceAdapterTagTBB>::Run();
}

@ -22,6 +22,7 @@ set(headers
MakeTestDataSet.h
Testing.h
TestingArrayHandles.h
TestingComputeBounds.h
TestingDeviceAdapter.h
TestingFancyArrayHandles.h
)
@ -39,6 +40,7 @@ set(unit_tests
UnitTestArrayHandleUniformPointCoordinates.cxx
UnitTestArrayPortalToIterators.cxx
UnitTestContTesting.cxx
UnitTestComputeBoundsSerial.cxx
UnitTestDataSetRegular.cxx
UnitTestDataSetExplicit.cxx
UnitTestDeviceAdapterAlgorithmDependency.cxx
@ -54,4 +56,3 @@ set(unit_tests
)
vtkm_unit_tests(SOURCES ${unit_tests})

@ -0,0 +1,170 @@
//============================================================================
// 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.
//============================================================================
#ifndef vtk_m_cont_testing_TestingComputeBounds_h
#define vtk_m_cont_testing_TestingComputeBounds_h
#include <vtkm/Types.h>
#include <vtkm/cont/Field.h>
#include <vtkm/cont/testing/Testing.h>
#include <vtkm/testing/Testing.h>
#include <algorithm>
#include <iostream>
namespace vtkm {
namespace cont {
namespace testing {
struct CustomTypeList : vtkm::ListTagBase<vtkm::Vec<Int32, 3>,
vtkm::Vec<Int64, 3>,
vtkm::Vec<Float32, 3>,
vtkm::Vec<Float64, 3>,
vtkm::Vec<Int32, 9>,
vtkm::Vec<Int64, 9>,
vtkm::Vec<Float32, 9>,
vtkm::Vec<Float64, 9> >
{};
template <typename DeviceAdapterTag>
class TestingComputeBounds
{
private:
template <typename T>
static void TestScalarField()
{
const vtkm::Id nvals = 11;
T data[nvals] = { 1, 2, 3, 4, 5, -5, -4, -3, -2, -1, 0 };
std::random_shuffle(data, data + nvals);
vtkm::cont::Field field("TestField", 1, vtkm::cont::Field::ASSOC_POINTS, data,
nvals);
vtkm::Float64 result[2];
field.GetBounds(result, DeviceAdapterTag());
if (result[0] == -5.0 && result[1] == 5.0)
{
std::cout << "Success" << std::endl;
}
else
{
std::cout << "Expected: -5.0, 5.0; Got: " << result[0] << ", " << result[1]
<< std::endl;
VTKM_TEST_FAIL("Failed");
}
}
template <typename T, vtkm::Id NumberOfComponents>
static void TestVecField()
{
const vtkm::Id nvals = 11;
T data[nvals] = { 1, 2, 3, 4, 5, -5, -4, -3, -2, -1, 0 };
vtkm::Vec<T, NumberOfComponents> fieldData[nvals];
for (vtkm::Id i = 0; i < NumberOfComponents; ++i)
{
std::random_shuffle(data, data + nvals);
for (vtkm::Id j = 0; j < nvals; ++j)
{
fieldData[j][i] = data[j];
}
}
vtkm::cont::Field field("TestField", 1, vtkm::cont::Field::ASSOC_POINTS, fieldData,
nvals);
vtkm::Float64 result[NumberOfComponents * 2];
field.GetBounds(result, DeviceAdapterTag(), CustomTypeList(),
VTKM_DEFAULT_STORAGE_LIST_TAG());
bool success = true;
for (vtkm::Id i = 0; i < NumberOfComponents; ++i)
{
if (result[i * 2] != -5.0 || result[i * 2 + 1] != 5.0)
{
success = false;
break;
}
}
if (success)
{
std::cout << "Success" << std::endl;
}
else
{
std::cout << "Expected: -5.0s and 5.0s; Got: ";
for (vtkm::Id i = 0; i < NumberOfComponents; ++i)
{
std::cout << result[i * 2] << ",";
}
std::cout << " and ";
for (vtkm::Id i = 0; i < NumberOfComponents; ++i)
{
std::cout << result[i * 2 + 1] << ",";
}
std::cout << std::endl;
VTKM_TEST_FAIL("Failed");
}
}
struct TestAll
{
VTKM_CONT_EXPORT void operator()() const
{
std::cout << "Testing (Int32, 1)..." << std::endl;
TestingComputeBounds::TestScalarField<vtkm::Int32>();
std::cout << "Testing (Int64, 1)..." << std::endl;
TestingComputeBounds::TestScalarField<vtkm::Int64>();
std::cout << "Testing (Float32, 1)..." << std::endl;
TestingComputeBounds::TestScalarField<vtkm::Float32>();
std::cout << "Testing (Float64, 1)..." << std::endl;
TestingComputeBounds::TestScalarField<vtkm::Float64>();
std::cout << "Testing (Int32, 3)..." << std::endl;
TestingComputeBounds::TestVecField<vtkm::Int32, 3>();
std::cout << "Testing (Int64, 3)..." << std::endl;
TestingComputeBounds::TestVecField<vtkm::Int64, 3>();
std::cout << "Testing (Float32, 3)..." << std::endl;
TestingComputeBounds::TestVecField<vtkm::Float32, 3>();
std::cout << "Testing (Float64, 3)..." << std::endl;
TestingComputeBounds::TestVecField<vtkm::Float64, 3>();
std::cout << "Testing (Int32, 9)..." << std::endl;
TestingComputeBounds::TestVecField<vtkm::Int32, 9>();
std::cout << "Testing (Int64, 9)..." << std::endl;
TestingComputeBounds::TestVecField<vtkm::Int64, 9>();
std::cout << "Testing (Float32, 9)..." << std::endl;
TestingComputeBounds::TestVecField<vtkm::Float32, 9>();
std::cout << "Testing (Float64, 9)..." << std::endl;
TestingComputeBounds::TestVecField<vtkm::Float64, 9>();
}
};
public:
static VTKM_CONT_EXPORT int Run()
{
return vtkm::cont::testing::Testing::Run(TestAll());
}
};
}
}
} // namespace vtkm::cont::testing
#endif //vtk_m_cont_testing_TestingComputeBounds_h

@ -0,0 +1,29 @@
//============================================================================
// 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/DeviceAdapterSerial.h>
#include <vtkm/cont/testing/TestingComputeBounds.h>
int UnitTestComputeBoundsSerial(int, char *[])
{
return vtkm::cont::testing::TestingComputeBounds
<vtkm::cont::DeviceAdapterTagSerial>::Run();
}