vtk-m/vtkm/cont/serial/testing/UnitTestSerialComputeRange.cxx

21 lines
858 B
C++
Raw Normal View History

2015-07-16 19:10:01 +00:00
//============================================================================
// Copyright (c) Kitware, Inc.
// All rights reserved.
// See LICENSE.txt for details.
2019-04-15 23:24:21 +00:00
//
2015-07-16 19:10:01 +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/cont/serial/DeviceAdapterSerial.h>
2015-07-16 19:10:01 +00:00
#include <vtkm/cont/testing/TestingComputeRange.h>
2015-07-16 19:10:01 +00:00
int UnitTestSerialComputeRange(int argc, char* argv[])
2015-07-16 19:10:01 +00:00
{
//TestingComputeRange forces the device
return vtkm::cont::testing::TestingComputeRange<vtkm::cont::DeviceAdapterTagSerial>::Run(argc,
argv);
2015-07-16 19:10:01 +00:00
}