vtk-m/vtkm/worklet/contourtree/PrintVectors.h

270 lines
8.7 KiB
C
Raw 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.
//============================================================================
2017-01-09 21:53:59 +00:00
// Copyright (c) 2016, Los Alamos National Security, LLC
// All rights reserved.
//
// Copyright 2016. Los Alamos National Security, LLC.
// This software was produced under U.S. Government contract DE-AC52-06NA25396
// for Los Alamos National Laboratory (LANL), which is operated by
// Los Alamos National Security, LLC for the U.S. Department of Energy.
// The U.S. Government has rights to use, reproduce, and distribute this
// software. NEITHER THE GOVERNMENT NOR LOS ALAMOS NATIONAL SECURITY, LLC
// MAKES ANY WARRANTY, EXPRESS OR IMPLIED, OR ASSUMES ANY LIABILITY FOR THE
// USE OF THIS SOFTWARE. If software is modified to produce derivative works,
// such modified software should be clearly marked, so as not to confuse it
2017-01-09 21:53:59 +00:00
// with the version available from LANL.
//
// Additionally, redistribution and use in source and binary forms, with or
// without modification, are permitted provided that the following conditions
2017-01-09 21:53:59 +00:00
// are met:
//
// 1. Redistributions of source code must retain the above copyright notice,
2017-01-09 21:53:59 +00:00
// this list of conditions and the following disclaimer.
// 2. Redistributions in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation
// and/or other materials provided with the distribution.
// 3. Neither the name of Los Alamos National Security, LLC, Los Alamos
// National Laboratory, LANL, the U.S. Government, nor the names of its
// contributors may be used to endorse or promote products derived from
2017-01-09 21:53:59 +00:00
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY LOS ALAMOS NATIONAL SECURITY, LLC AND
// CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
// BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
// FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL LOS ALAMOS
// NATIONAL SECURITY, LLC OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
// INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
// BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
// USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
2017-01-09 21:53:59 +00:00
// THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//============================================================================
// This code is based on the algorithm presented in the paper:
// “Parallel Peak Pruning for Scalable SMP Contour Tree Computation.”
// Hamish Carr, Gunther Weber, Christopher Sewell, and James Ahrens.
// Proceedings of the IEEE Symposium on Large Data Analysis and Visualization
2017-01-09 21:53:59 +00:00
// (LDAV), October 2016, Baltimore, Maryland.
#ifndef vtkm_worklet_contourtree_print_vector_h
#define vtkm_worklet_contourtree_print_vector_h
2017-05-18 14:51:24 +00:00
#include <fstream>
#include <iomanip>
2017-05-18 14:51:24 +00:00
#include <iostream>
#include <string>
#include <vtkm/Types.h>
#include <vtkm/cont/ArrayHandle.h>
2017-05-18 14:29:41 +00:00
namespace vtkm
{
namespace worklet
{
namespace contourtree
{
// debug value for number of columns to print
2017-01-12 21:35:34 +00:00
#define PRINT_COLS 10
#define PRINT_WIDTH 12
#define PREFIX_WIDTH 20
// utility routine to convert number to a string
std::string NumString(vtkm::Id number);
// base routines for printing label & prefix bars
void PrintLabel(std::string label);
void PrintSeparatingBar(vtkm::Id howMany);
// routines to print out a single value
2017-05-18 14:29:41 +00:00
template <typename T>
void PrintDataType(T value);
void PrintIndexType(vtkm::Id value);
// header line
void PrintHeader(vtkm::Id howMany);
// base routines for reading & writing host vectors
2017-05-18 14:29:41 +00:00
template <typename T, typename StorageType>
void PrintValues(std::string label,
vtkm::cont::ArrayHandle<T, StorageType>& dVec,
2017-05-18 14:29:41 +00:00
vtkm::Id nValues = -1);
void PrintIndices(std::string label,
vtkm::cont::ArrayHandle<vtkm::Id>& iVec,
2017-05-18 14:29:41 +00:00
vtkm::Id nIndices = -1);
// routines for printing indices & data in blocks
2017-05-18 14:29:41 +00:00
template <typename T, typename StorageType>
void PrintLabelledBlock(std::string label,
const vtkm::cont::ArrayHandle<T, StorageType>& dVec,
vtkm::Id nRows,
vtkm::Id nColumns);
// utility routine to convert number to a string
inline std::string NumString(vtkm::Id number)
2017-05-18 14:29:41 +00:00
{ // NumString()
char strBuf[20];
2020-02-24 19:19:37 +00:00
sprintf(strBuf, "%1d", static_cast<int>(number));
2017-05-18 14:29:41 +00:00
return std::string(strBuf);
} // NumString()
// base routines for printing label & prefix bars
inline void PrintLabel(std::string label)
{ // PrintLabel()
2017-05-18 14:29:41 +00:00
// print out the front end
std::cout << std::setw(PREFIX_WIDTH) << std::left << label;
// print out the vertical line
std::cout << std::right << "|";
} // PrintLabel()
inline void PrintSeparatingBar(vtkm::Id howMany)
{ // PrintSeparatingBar()
2017-05-18 14:29:41 +00:00
// print out the front end
std::cout << std::setw(PREFIX_WIDTH) << std::setfill('-') << "";
// now the + at the vertical line
std::cout << "+";
// now print out the tail end - fixed number of spaces per entry
for (vtkm::Id block = 0; block < howMany; block++)
std::cout << std::setw(PRINT_WIDTH) << std::setfill('-') << "";
// now the endl, resetting the fill character
std::cout << std::setfill(' ') << std::endl;
} // PrintSeparatingBar()
// routine to print out a single value
2017-05-18 14:29:41 +00:00
template <typename T>
void PrintDataType(T value)
{ // PrintDataType
2017-05-18 14:29:41 +00:00
std::cout << std::setw(PRINT_WIDTH) << value;
} // PrintDataType
// routine to print out a single value
inline void PrintIndexType(vtkm::Id value)
{ // PrintIndexType
2017-05-18 14:29:41 +00:00
std::cout << std::setw(PRINT_WIDTH) << value;
} // PrintIndexType
// header line
inline void PrintHeader(vtkm::Id howMany)
{ // PrintHeader()
2017-05-18 14:29:41 +00:00
if (howMany > PRINT_COLS)
howMany = PRINT_COLS;
// print out a separating bar
PrintSeparatingBar(howMany);
2017-05-18 14:29:41 +00:00
// print out a label
PrintLabel("ID");
2017-05-18 14:29:41 +00:00
// print out the ID numbers
for (vtkm::Id entry = 0; entry < howMany; entry++)
PrintIndexType(entry);
2017-05-18 14:29:41 +00:00
// and an endl
std::cout << std::endl;
// print out another separating bar
PrintSeparatingBar(howMany);
} // PrintHeader()
// base routines for reading & writing host vectors
2017-05-18 14:29:41 +00:00
template <typename T, typename StorageType>
void PrintValues(std::string label, vtkm::cont::ArrayHandle<T, StorageType>& dVec, vtkm::Id nValues)
{
2017-05-18 14:29:41 +00:00
// -1 means full size
if (nValues == -1)
{
2017-05-18 14:29:41 +00:00
nValues = dVec.GetNumberOfValues();
}
2017-05-18 14:29:41 +00:00
if (nValues > PRINT_COLS)
{
2017-05-18 14:29:41 +00:00
nValues = PRINT_COLS;
}
2017-05-18 14:29:41 +00:00
// print the label
PrintLabel(label);
2017-05-18 14:29:41 +00:00
// now print the data
const auto dVecPortal = dVec.ReadPortal();
2017-05-18 14:29:41 +00:00
for (vtkm::Id entry = 0; entry < nValues; entry++)
{
PrintDataType(dVecPortal.Get(entry));
}
2017-05-18 14:29:41 +00:00
// and an endl
std::cout << std::endl;
} // PrintValues()
// base routines for reading & writing host vectors
inline void PrintIndices(std::string label,
vtkm::cont::ArrayHandle<vtkm::Id>& iVec,
2017-05-18 14:29:41 +00:00
vtkm::Id nIndices)
{
2017-05-18 14:29:41 +00:00
// -1 means full size
if (nIndices == -1)
{
2017-05-18 14:29:41 +00:00
nIndices = iVec.GetNumberOfValues();
}
2017-05-18 14:29:41 +00:00
if (nIndices > PRINT_COLS)
{
2017-05-18 14:29:41 +00:00
nIndices = PRINT_COLS;
}
2017-05-18 14:29:41 +00:00
// print the label
PrintLabel(label);
2017-05-18 14:29:41 +00:00
// now print the data
const auto iVecPortal = iVec.ReadPortal();
2017-05-18 14:29:41 +00:00
for (vtkm::Id entry = 0; entry < nIndices; entry++)
{
PrintIndexType(iVecPortal.Get(entry));
}
2017-05-18 14:29:41 +00:00
// and an endl
std::cout << std::endl;
} // PrintIndices()
2017-05-18 14:29:41 +00:00
template <typename T, typename StorageType>
void PrintLabelledBlock(std::string label,
const vtkm::cont::ArrayHandle<T, StorageType>& dVec,
vtkm::Id nRows,
vtkm::Id nColumns)
{
2017-05-18 14:29:41 +00:00
if (nRows > PRINT_COLS)
{
2017-05-18 14:29:41 +00:00
nRows = PRINT_COLS;
}
2017-05-18 14:29:41 +00:00
if (nColumns > PRINT_COLS)
{
2017-05-18 14:29:41 +00:00
nColumns = PRINT_COLS;
}
2017-05-18 14:29:41 +00:00
// start with a header
PrintHeader(nColumns);
2017-05-18 14:29:41 +00:00
// loop control variable
vtkm::Id entry = 0;
// per row
const auto dVecPortal = dVec.ReadPortal();
2017-05-18 14:29:41 +00:00
for (vtkm::Id row = 0; row < nRows; row++)
{ // per row
PrintLabel(label + "[" + NumString(row) + "]");
2017-05-18 14:29:41 +00:00
// now print the data
for (vtkm::Id col = 0; col < nColumns; col++, entry++)
{
PrintDataType(dVecPortal.Get(entry));
2017-05-18 14:29:41 +00:00
}
std::cout << std::endl;
} // per row
std::cout << std::endl;
} // PrintLabelledBlock()
}
}
}
#endif