1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
|
/*=========================================================================
Program: Visualization Toolkit
Module: vtkMPIPixelView.h
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm 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.
=========================================================================*/
// .NAME vtkMPIPixelView -- Templated helper function for creating
// MPI datatypes that describe a vtkPixelExtent.
#ifndef vtkMPIPixelView_h
#define vtkMPIPixelView_h
#include "vtkPixelExtent.h" // for pixel extent
#include "vtkMPI.h" // for mpi
#include "vtkMPIPixelTT.h" // for type traits
#include <iostream> // for cerr
//-----------------------------------------------------------------------------
template<typename T>
int vtkMPIPixelViewNew(
const vtkPixelExtent &domain,
const vtkPixelExtent &decomp,
int nComps,
MPI_Datatype &view)
{
#ifndef NDEBUG
int mpiOk=0;
MPI_Initialized(&mpiOk);
if (!mpiOk)
{
std::cerr << "This class requires the MPI runtime." << std::endl;
return -1;
}
#endif
int iErr;
MPI_Datatype nativeType;
iErr=MPI_Type_contiguous(
nComps,
vtkMPIPixelTT<T>::MPIType,
&nativeType);
if (iErr)
{
return -2;
}
int domainDims[2];
domain.Size(domainDims);
int domainStart[2];
domain.GetStartIndex(domainStart);
int decompDims[2];
decomp.Size(decompDims);
int decompStart[2];
decomp.GetStartIndex(decompStart, domainStart);
// use a contiguous type when possible.
if (domain==decomp)
{
unsigned long long nCells=decomp.Size();
iErr=MPI_Type_contiguous((int)nCells, nativeType, &view);
if (iErr)
{
MPI_Type_free(&nativeType);
return -3;
}
}
else
{
iErr=MPI_Type_create_subarray(
2,
domainDims,
decompDims,
decompStart,
MPI_ORDER_FORTRAN,
nativeType,
&view);
if (iErr)
{
MPI_Type_free(&nativeType);
return -4;
}
}
iErr=MPI_Type_commit(&view);
if (iErr)
{
MPI_Type_free(&nativeType);
return -5;
}
MPI_Type_free(&nativeType);
return 0;
}
#endif
// VTK-HeaderTest-Exclude: vtkMPIPixelView.h
|