vtk-m/vtkm/worklet/testing/UnitTestWaveletCompressor.cxx
Kenneth Moreland fdaccc22db Remove exports for header-only functions/methods
Change the VTKM_CONT_EXPORT to VTKM_CONT. (Likewise for EXEC and
EXEC_CONT.) Remove the inline from these macros so that they can be
applied to everything, including implementations in a library.

Because inline is not declared in these modifies, you have to add the
keyword to functions and methods where the implementation is not inlined
in the class.
2016-11-15 22:22:13 -07:00

266 lines
9.0 KiB
C++

//============================================================================
// 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/worklet/WaveletCompressor.h>
#include <vtkm/cont/testing/Testing.h>
#include <vtkm/cont/ArrayHandlePermutation.h>
#include <vtkm/cont/Timer.h>
#include <vector>
#include <iomanip>
namespace vtkm
{
namespace worklet
{
namespace wavelets
{
class SineWorklet : public vtkm::worklet::WorkletMapField
{
public:
typedef void ControlSignature(FieldInOut<>);
typedef void ExecutionSignature(_1, WorkIndex);
template<typename T>
VTKM_EXEC
void operator()(T& x, const vtkm::Id& workIdx) const
{
x = vtkm::Sin(vtkm::Float64(workIdx) / 100.0) * 100.0;
}
};
class GaussianWorklet2D : public vtkm::worklet::WorkletMapField
{
public:
typedef void ControlSignature(FieldInOut<>);
typedef void ExecutionSignature(_1, WorkIndex);
VTKM_EXEC
GaussianWorklet2D( vtkm::Id dx, vtkm::Id dy, vtkm::Float64 a,
vtkm::Float64 x, vtkm::Float64 y,
vtkm::Float64 sx, vtkm::Float64 xy )
: dimX( dx ), dimY( dy ), amp (a),
x0( x ), y0( y ),
sigmaX( sx ), sigmaY( xy )
{
sigmaX2 = 2 * sigmaX * sigmaX;
sigmaY2 = 2 * sigmaY * sigmaY;
}
VTKM_EXEC
void Sig1Dto2D( vtkm::Id idx, vtkm::Id &x, vtkm::Id &y ) const
{
x = idx % dimX;
y = idx / dimX;
}
VTKM_EXEC
vtkm::Float64 GetGaussian( vtkm::Float64 x, vtkm::Float64 y ) const
{
vtkm::Float64 power = (x-x0) * (x-x0) / sigmaX2 + (y-y0) * (y-y0) / sigmaY2;
return vtkm::Exp( power * -1.0 ) * amp;
}
template<typename T>
VTKM_EXEC
void operator()(T& val, const vtkm::Id& workIdx) const
{
vtkm::Id x, y;
Sig1Dto2D( workIdx, x, y );
val = GetGaussian( static_cast<vtkm::Float64>(x), static_cast<vtkm::Float64>(y) );
}
private: // see wikipedia page
const vtkm::Id dimX, dimY; // 2D extent
const vtkm::Float64 amp; // amplitude
const vtkm::Float64 x0, y0; // center
const vtkm::Float64 sigmaX, sigmaY; // spread
vtkm::Float64 sigmaX2, sigmaY2; // 2 * sigma * sigma
};
}
}
}
template< typename ArrayType >
void FillArray( ArrayType& array )
{
typedef vtkm::worklet::wavelets::SineWorklet SineWorklet;
SineWorklet worklet;
vtkm::worklet::DispatcherMapField< SineWorklet > dispatcher( worklet );
dispatcher.Invoke( array );
}
template< typename ArrayType >
void FillArray2D( ArrayType& array, vtkm::Id dimX, vtkm::Id dimY )
{
typedef vtkm::worklet::wavelets::GaussianWorklet2D WorkletType;
WorkletType worklet( dimX, dimY, 100.0,
static_cast<vtkm::Float64>(dimX)/2.0, // center
static_cast<vtkm::Float64>(dimY)/2.0, // center
static_cast<vtkm::Float64>(dimX)/4.0, // spread
static_cast<vtkm::Float64>(dimY)/4.0);// spread
vtkm::worklet::DispatcherMapField< WorkletType > dispatcher( worklet );
dispatcher.Invoke( array );
}
void TestDecomposeReconstruct2D()
{
std::cout << "Testing 2D wavelet compressor on a 1000x1000 square: " << std::endl;
vtkm::Id sigX = 1000;
vtkm::Id sigY = 1000;
vtkm::Id sigLen = sigX * sigY;
// make input data array handle
vtkm::cont::ArrayHandle<vtkm::Float64> inputArray;
inputArray.PrepareForOutput( sigLen, VTKM_DEFAULT_DEVICE_ADAPTER_TAG() );
FillArray2D( inputArray, sigX, sigY );
vtkm::cont::ArrayHandle<vtkm::Float64> outputArray;
// Use a WaveletCompressor
vtkm::worklet::wavelets::WaveletName wname = vtkm::worklet::wavelets::CDF9_7;
std::cout << "Wavelet kernel = CDF 9/7" << std::endl;
vtkm::worklet::WaveletCompressor compressor( wname );
vtkm::Id XMaxLevel = compressor.GetWaveletMaxLevel( sigX );
vtkm::Id YMaxLevel = compressor.GetWaveletMaxLevel( sigY );
vtkm::Id nLevels = vtkm::Min( XMaxLevel, YMaxLevel );
std::cout << "Decomposition levels = " << nLevels << std::endl;
std::vector<vtkm::Id> L;
vtkm::Float64 computationTime = 0.0;
vtkm::Float64 elapsedTime1, elapsedTime2, elapsedTime3;
// Decompose
vtkm::cont::Timer<> timer;
computationTime =
compressor.WaveDecompose2D( inputArray, nLevels, sigX, sigY, outputArray, L,
VTKM_DEFAULT_DEVICE_ADAPTER_TAG() );
elapsedTime1 = timer.GetElapsedTime();
std::cout << "Decompose time = " << elapsedTime1 << std::endl;
std::cout << " ->computation time = " << computationTime << std::endl;
// Squash small coefficients
timer.Reset();
vtkm::Float64 cratio = 1.0; // X:1 compression, where X >= 1
compressor.SquashCoefficients( outputArray, cratio, VTKM_DEFAULT_DEVICE_ADAPTER_TAG() );
elapsedTime2 = timer.GetElapsedTime();
std::cout << "Squash time = " << elapsedTime2 << std::endl;
// Reconstruct
vtkm::cont::ArrayHandle<vtkm::Float64> reconstructArray;
timer.Reset();
computationTime =
compressor.WaveReconstruct2D( outputArray, nLevels, sigX, sigY, reconstructArray, L,
VTKM_DEFAULT_DEVICE_ADAPTER_TAG() );
elapsedTime3 = timer.GetElapsedTime();
std::cout << "Reconstruction time = " << elapsedTime3 << std::endl;
std::cout << " ->computation time = " << computationTime << std::endl;
std::cout << "Total time = "
<< (elapsedTime1 + elapsedTime2 + elapsedTime3) << std::endl;
outputArray.ReleaseResources();
compressor.EvaluateReconstruction( inputArray, reconstructArray, VTKM_DEFAULT_DEVICE_ADAPTER_TAG() );
timer.Reset();
for( vtkm::Id i = 0; i < reconstructArray.GetNumberOfValues(); i++ )
{
VTKM_TEST_ASSERT( test_equal( reconstructArray.GetPortalConstControl().Get(i),
inputArray.GetPortalConstControl().Get(i) ),
"WaveletCompressor 2D failed..." );
}
elapsedTime1 = timer.GetElapsedTime();
std::cout << "Verification time = " << elapsedTime1 << std::endl;
}
void TestDecomposeReconstruct1D()
{
std::cout << "Testing 1D wavelet compressor on a 1 million sized array " << std::endl;
vtkm::Id million = 1000000;
vtkm::Id sigLen = million * 1;
// make input data array handle
std::vector<vtkm::Float64> tmpVector;
for( vtkm::Id i = 0; i < sigLen; i++ )
{
tmpVector.push_back( 100.0 * vtkm::Sin(static_cast<vtkm::Float64>(i)/100.0 ));
}
vtkm::cont::ArrayHandle<vtkm::Float64> inputArray =
vtkm::cont::make_ArrayHandle(tmpVector);
vtkm::cont::ArrayHandle<vtkm::Float64> outputArray;
// Use a WaveletCompressor
vtkm::worklet::wavelets::WaveletName wname = vtkm::worklet::wavelets::CDF9_7;
std::cout << "Wavelet kernel = CDF 9/7" << std::endl;
vtkm::worklet::WaveletCompressor compressor( wname );
// User maximum decompose levels, and no compression
vtkm::Id maxLevel = compressor.GetWaveletMaxLevel( sigLen );
vtkm::Id nLevels = maxLevel;
std::cout << "Decomposition levels = " << nLevels << std::endl;
std::vector<vtkm::Id> L;
// Decompose
vtkm::cont::Timer<> timer;
compressor.WaveDecompose( inputArray, nLevels, outputArray, L, VTKM_DEFAULT_DEVICE_ADAPTER_TAG() );
vtkm::Float64 elapsedTime = timer.GetElapsedTime();
std::cout << "Decompose time = " << elapsedTime << std::endl;
// Reconstruct
vtkm::cont::ArrayHandle<vtkm::Float64> reconstructArray;
timer.Reset();
compressor.WaveReconstruct( outputArray, nLevels, L, reconstructArray, VTKM_DEFAULT_DEVICE_ADAPTER_TAG() );
elapsedTime = timer.GetElapsedTime();
std::cout << "Reconstruction time = " << elapsedTime << std::endl;
compressor.EvaluateReconstruction( inputArray, reconstructArray, VTKM_DEFAULT_DEVICE_ADAPTER_TAG() );
timer.Reset();
for( vtkm::Id i = 0; i < reconstructArray.GetNumberOfValues(); i++ )
{
VTKM_TEST_ASSERT( test_equal( reconstructArray.GetPortalConstControl().Get(i),
inputArray.GetPortalConstControl().Get(i)),
"WaveletCompressor 1D failed..." );
}
elapsedTime = timer.GetElapsedTime();
std::cout << "Verification time = " << elapsedTime << std::endl;
}
void TestWaveletCompressor()
{
TestDecomposeReconstruct1D();
std::cout << std::endl;
TestDecomposeReconstruct2D();
}
int UnitTestWaveletCompressor(int, char *[])
{
return vtkm::cont::testing::Testing::Run(TestWaveletCompressor);
}