/usr/include/trilinos/Tpetra_MatrixIO.cpp is in libtrilinos-tpetra-dev 12.10.1-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 | /*
// @HEADER
// ***********************************************************************
//
// Tpetra: Templated Linear Algebra Services Package
// Copyright (2008) Sandia Corporation
//
// Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
// the U.S. Government retains certain rights in this software.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// 1. Redistributions of source code must retain the above copyright
// notice, 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 the Corporation nor the names of the
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY SANDIA CORPORATION "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 SANDIA CORPORATION OR THE
// 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 THIS
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
// Questions? Contact Michael A. Heroux (maherou@sandia.gov)
//
// ************************************************************************
// @HEADER
*/
#include "Tpetra_MatrixIO.hpp"
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <functional>
#include <algorithm>
#include <iterator>
#include <exception>
#include <string>
#include <cctype>
bool Tpetra::Utils::parseIfmt(Teuchos::ArrayRCP<char> fmt, int &perline, int &width) {
TEUCHOS_TEST_FOR_EXCEPT(fmt.size() != 0 && fmt[fmt.size()-1] != '\0');
// parses integers n and d out of (nId)
bool error = true;
std::transform(fmt.begin(), fmt.end(), fmt, static_cast < int(*)(int) > (std::toupper));
if (std::sscanf(fmt.getRawPtr(),"(%dI%d)",&perline,&width) == 2) {
error = false;
}
return error;
}
bool Tpetra::Utils::parseRfmt(Teuchos::ArrayRCP<char> fmt, int &perline, int &width, int &prec, char &valformat) {
TEUCHOS_TEST_FOR_EXCEPT(fmt.size() != 0 && fmt[fmt.size()-1] != '\0');
std::transform(fmt.begin(), fmt.end(), fmt, static_cast < int(*)(int) > (std::toupper));
// find the first left paren '(' and the last right paren ')'
Teuchos::ArrayRCP<char>::iterator firstLeftParen = std::find( fmt.begin(), fmt.end(), '(');
Teuchos::ArrayRCP<char>::iterator lastRightParen = std::find(std::reverse_iterator<Teuchos::ArrayRCP<char>::iterator>(fmt.end()),
std::reverse_iterator<Teuchos::ArrayRCP<char>::iterator>(fmt.begin()),
')').base()-1;
// select the substring between the parens, including them
// if neither was found, set the string to empty
if (firstLeftParen == fmt.end() || lastRightParen == fmt.begin()) {
fmt.resize(0 + 1);
fmt[0] = '\0';
}
else {
fmt += (firstLeftParen - fmt.begin());
size_t newLen = lastRightParen - firstLeftParen + 1;
fmt.resize(newLen + 1);
fmt[newLen] = '\0';
}
if (std::find(fmt.begin(),fmt.end(),'P') != fmt.end()) {
// not supported
return true;
}
bool error = true;
if (std::sscanf(fmt.getRawPtr(),"(%d%c%d.%d)",&perline,&valformat,&width,&prec) == 4) {
if (valformat == 'E' || valformat == 'D' || valformat == 'F') {
error = false;
}
}
return error;
}
void Tpetra::Utils::readHBHeader(std::ifstream &fin, Teuchos::ArrayRCP<char> &Title, Teuchos::ArrayRCP<char> &Key, Teuchos::ArrayRCP<char> &Type,
int &Nrow, int &Ncol, int &Nnzero, int &Nrhs,
Teuchos::ArrayRCP<char> &Ptrfmt, Teuchos::ArrayRCP<char> &Indfmt, Teuchos::ArrayRCP<char> &Valfmt, Teuchos::ArrayRCP<char> &Rhsfmt,
int &Ptrcrd, int &Indcrd, int &Valcrd, int &Rhscrd, Teuchos::ArrayRCP<char> &Rhstype) {
int Totcrd, Neltvl, Nrhsix;
const int MAXLINE = 81;
char line[MAXLINE];
//
Title.resize(72 + 1); std::fill(Title.begin(), Title.end(), '\0');
Key.resize(8 + 1); std::fill(Key.begin(), Key.end(), '\0');
Type.resize(3 + 1); std::fill(Type.begin(), Type.end(), '\0');
Ptrfmt.resize(16 + 1); std::fill(Ptrfmt.begin(), Ptrfmt.end(), '\0');
Indfmt.resize(16 + 1); std::fill(Indfmt.begin(), Indfmt.end(), '\0');
Valfmt.resize(20 + 1); std::fill(Valfmt.begin(), Valfmt.end(), '\0');
Rhsfmt.resize(20 + 1); std::fill(Rhsfmt.begin(), Rhsfmt.end(), '\0');
//
const std::string errStr("Tpetra::Utils::readHBHeader(): Improperly formatted H/B file: ");
/* First line: (A72,A8) */
fin.getline(line,MAXLINE);
TEUCHOS_TEST_FOR_EXCEPTION( std::sscanf(line,"%*s") < 0, std::runtime_error, errStr << "error buffering line.");
(void)std::sscanf(line, "%72c%8[^\n]", Title.getRawPtr(), Key.getRawPtr());
/* Second line: (5I14) or (4I14) */
fin.getline(line,MAXLINE);
TEUCHOS_TEST_FOR_EXCEPTION(std::sscanf(line,"%*s") < 0, std::runtime_error, errStr << "error buffering line.");
if ( std::sscanf(line,"%14d%14d%14d%14d%14d",&Totcrd,&Ptrcrd,&Indcrd,&Valcrd,&Rhscrd) != 5 ) {
Rhscrd = 0;
TEUCHOS_TEST_FOR_EXCEPTION(std::sscanf(line,"%14d%14d%14d%14d",&Totcrd,&Ptrcrd,&Indcrd,&Valcrd) != 4, std::runtime_error, errStr << "error reading pointers (line 2)");
}
/* Third line: (A3, 11X, 4I14) */
fin.getline(line,MAXLINE);
TEUCHOS_TEST_FOR_EXCEPTION(std::sscanf(line,"%*s") < 0, std::runtime_error, errStr << "error buffering line.");
TEUCHOS_TEST_FOR_EXCEPTION(std::sscanf(line, "%3c%14i%14i%14i%14i", Type.getRawPtr(),&Nrow,&Ncol,&Nnzero,&Neltvl) != 5 , std::runtime_error, errStr << "error reading matrix meta-data (line 3)");
std::transform(Type.begin(), Type.end(), Type.begin(), static_cast < int(*)(int) > (std::toupper));
/* Fourth line: */
fin.getline(line,MAXLINE);
TEUCHOS_TEST_FOR_EXCEPTION(std::sscanf(line,"%*s") < 0, std::runtime_error, errStr << "error buffering line.");
if (Rhscrd != 0) {
TEUCHOS_TEST_FOR_EXCEPTION(std::sscanf(line,"%16c%16c%20c%20c",Ptrfmt.getRawPtr(),Indfmt.getRawPtr(),Valfmt.getRawPtr(),Rhsfmt.getRawPtr()) != 4, std::runtime_error, errStr << "error reading formats (line 4)");
}
else {
TEUCHOS_TEST_FOR_EXCEPTION(std::sscanf(line,"%16c%16c%20c",Ptrfmt.getRawPtr(),Indfmt.getRawPtr(),Valfmt.getRawPtr()) != 3, std::runtime_error, errStr << "error reading formats (line 4)");
}
/* (Optional) Fifth line: */
if (Rhscrd != 0 ) {
Rhstype.resize(3 + 1,'\0');
fin.getline(line,MAXLINE);
TEUCHOS_TEST_FOR_EXCEPTION(std::sscanf(line,"%*s") < 0, std::runtime_error, errStr << "error buffering line.");
TEUCHOS_TEST_FOR_EXCEPTION(std::sscanf(line,"%3c%14d%14d", Rhstype.getRawPtr(), &Nrhs, &Nrhsix) != 3, std::runtime_error, errStr << "error reading right-hand-side meta-data (line 5)");
}
}
void Tpetra::Utils::readHBInfo(const std::string &filename, int &M, int &N, int &nz, Teuchos::ArrayRCP<char> &Type, int &Nrhs) {
std::ifstream fin;
int Ptrcrd, Indcrd, Valcrd, Rhscrd;
Teuchos::ArrayRCP<char> Title, Key, Rhstype, Ptrfmt, Indfmt, Valfmt, Rhsfmt;
try {
fin.open(filename.c_str(),std::ifstream::in);
Tpetra::Utils::readHBHeader(fin, Title, Key, Type, M, N, nz, Nrhs,
Ptrfmt, Indfmt, Valfmt, Rhsfmt,
Ptrcrd, Indcrd, Valcrd, Rhscrd, Rhstype);
fin.close();
}
catch (std::exception &e) {
TEUCHOS_TEST_FOR_EXCEPTION(true, std::runtime_error,
"Tpetra::Utils::readHBInfo() of filename \"" << filename << "\" caught exception: " << std::endl
<< e.what() << std::endl);
}
}
void Tpetra::Utils::readHBMatDouble(const std::string &filename, int &numRows, int &numCols, int &numNZ, std::string &type, Teuchos::ArrayRCP<int> &colPtrs, Teuchos::ArrayRCP<int> &rowInds, Teuchos::ArrayRCP<double> &vals) {
// NOTE: if complex, allocate enough space for 2*NNZ and interleave real and imaginary parts (real,imag)
// if pattern, don't touch parameter vals; do not allocate space space for values
try {
std::ifstream fin;
int ptrCrd, indCrd, valCrd;
Teuchos::ArrayRCP<char> Title, Key, Ptrfmt, Indfmt, Valfmt;
const int MAXSIZE = 81;
char lineBuf[MAXSIZE];
// nitty gritty
int ptrsPerLine, ptrWidth, indsPerLine, indWidth, valsPerLine, valWidth, valPrec;
char valFlag;
//
fin.open(filename.c_str(),std::ifstream::in);
{
// we don't care about RHS-related stuff, so declare those vars in an expiring scope
int Nrhs, rhsCrd;
Teuchos::ArrayRCP<char> Rhstype, Rhsfmt;
Teuchos::ArrayRCP<char> TypeArray;
Tpetra::Utils::readHBHeader(fin, Title, Key, TypeArray, numRows, numCols, numNZ, Nrhs,
Ptrfmt, Indfmt, Valfmt, Rhsfmt,
ptrCrd, indCrd, valCrd, rhsCrd, Rhstype);
if (TypeArray.size() > 0) {
type.resize(TypeArray.size()-1);
std::copy(TypeArray.begin(), TypeArray.end(), type.begin());
}
}
const std::string errStr("Tpetra::Utils::readHBHeader(): Improperly formatted H/B file.");
const bool readPatternOnly = (type[0] == 'P' || type[0] == 'p');
const bool readComplex = (type[0] == 'C' || type[0] == 'c');
/* Parse the array input formats from Line 3 of HB file */
TEUCHOS_TEST_FOR_EXCEPTION( Tpetra::Utils::parseIfmt(Ptrfmt,ptrsPerLine,ptrWidth) == true, std::runtime_error,
"Tpetra::Utils::readHBMatDouble(): error parsing. Invalid/unsupported file format.");
TEUCHOS_TEST_FOR_EXCEPTION( Tpetra::Utils::parseIfmt(Indfmt,indsPerLine,indWidth) == true, std::runtime_error,
"Tpetra::Utils::readHBMatDouble(): error parsing. Invalid/unsupported file format.");
if (readPatternOnly == false) {
TEUCHOS_TEST_FOR_EXCEPTION( Tpetra::Utils::parseRfmt(Valfmt,valsPerLine,valWidth,valPrec,valFlag) == true, std::runtime_error,
"Tpetra::Utils::readHBMatDouble(): error parsing. Invalid/unsupported file format.");
}
// special case this: the reason is that the number of colPtrs read is numCols+1, which is non-zero even if numCols == 0
// furthermore, if numCols == 0, there is nothing of interest to read
if (numCols == 0) return;
// allocate space for column pointers, row indices, and values
// if the file is empty, do not touch these ARCPs
colPtrs = Teuchos::arcp<int>(numCols+1);
if (numNZ > 0) {
rowInds = Teuchos::arcp<int>(numNZ);
if (readPatternOnly == false) {
if (readComplex) {
vals = Teuchos::arcp<double>(2*numNZ);
}
else {
vals = Teuchos::arcp<double>(numNZ);
}
}
}
/* Read column pointer array:
Specifically, read ptrCrd number of lines, and on each line, read ptrsPerLine number of integers, each of width ptrWidth
Store these in colPtrs */
{
int colPtrsRead = 0;
char NullSub = '\0';
for (int lno=0; lno < ptrCrd; ++lno) {
fin.getline(lineBuf, MAXSIZE);
TEUCHOS_TEST_FOR_EXCEPTION(std::sscanf(lineBuf,"%*s") < 0, std::runtime_error, errStr);
char *linePtr = lineBuf;
for (int ptr=0; ptr < ptrsPerLine; ++ptr) {
if (colPtrsRead == numCols + 1) break;
int cptr;
// terminate the string at the end of the current ptr block, saving the character in that location
std::swap(NullSub,linePtr[ptrWidth]);
// read the ptr
std::sscanf(linePtr, "%d", &cptr);
// put the saved character back, and put the '\0' back into NullSub for use again
std::swap(NullSub,linePtr[ptrWidth]);
linePtr += ptrWidth;
colPtrs[colPtrsRead++] = cptr;
}
}
TEUCHOS_TEST_FOR_EXCEPT(colPtrsRead != numCols + 1);
}
/* Read row index array:
Specifically, read indCrd number of lines, and on each line, read indsPerLine number of integers, each of width indWidth
Store these in rowInds */
{
char NullSub = '\0';
int indicesRead = 0;
for (int lno=0; lno < indCrd; ++lno) {
fin.getline(lineBuf, MAXSIZE);
TEUCHOS_TEST_FOR_EXCEPTION(std::sscanf(lineBuf,"%*s") < 0, std::runtime_error, errStr);
char *linePtr = lineBuf;
for (int indcntr=0; indcntr < indsPerLine; ++indcntr) {
if (indicesRead == numNZ) break;
int ind;
// terminate the string at the end of the current ind block, saving the character in that location
std::swap(NullSub,linePtr[indWidth]);
// read the ind
std::sscanf(linePtr, "%d", &ind);
// put the saved character back, and put the '\0' back into NullSub for use again
std::swap(NullSub,linePtr[indWidth]);
linePtr += indWidth;
rowInds[indicesRead++] = ind;
}
}
TEUCHOS_TEST_FOR_EXCEPT(indicesRead != numNZ);
}
/* Read array of values:
Specifically, read valCrd number of lines, and on each line, read valsPerLine number of real values, each of width/precision valWidth/valPrec
Store these in vals
If readComplex, then read twice as many non-zeros, and interleave real,imag into vals */
if (readPatternOnly == false) {
int totalNumVals;
if (readComplex) {
totalNumVals = 2*numNZ;
}
else {
totalNumVals = numNZ;
}
char NullSub = '\0';
int valsRead = 0;
for (int lno=0; lno < valCrd; ++lno) {
fin.getline(lineBuf, MAXSIZE);
TEUCHOS_TEST_FOR_EXCEPTION(std::sscanf(lineBuf,"%*s") < 0, std::runtime_error, errStr);
// if valFlag == 'D', then we need to convert [dD] in fp vals into [eE] that scanf can parse
if (valFlag == 'D') std::replace_if(lineBuf, lineBuf+MAXSIZE, std::bind2nd(std::equal_to<char>(), 'D'), 'E');
char *linePtr = lineBuf;
for (int valcntr=0; valcntr < valsPerLine; ++valcntr) {
if (valsRead == totalNumVals) break;
double val;
// terminate the string at the end of the current val block, saving the character in that location
std::swap(NullSub,linePtr[valWidth]);
// read the val
std::sscanf(linePtr, "%le", &val);
// put the saved character back, and put the '\0' back into NullSub for use again
std::swap(NullSub,linePtr[valWidth]);
linePtr += valWidth;
vals[valsRead++] = val;
}
}
TEUCHOS_TEST_FOR_EXCEPT(valsRead != totalNumVals);
}
fin.close();
}
catch (std::exception &e) {
TEUCHOS_TEST_FOR_EXCEPTION(true, std::runtime_error,
"Tpetra::Utils::readHBInfo() of filename \"" << filename << "\" caught exception: " << std::endl
<< e.what() << std::endl);
}
}
#ifdef HAVE_TPETRA_EXPLICIT_INSTANTIATION
#include "TpetraCore_ETIHelperMacros.h"
#include "Tpetra_MatrixIO_def.hpp"
namespace Tpetra {
namespace Utils {
TPETRA_ETI_MANGLING_TYPEDEFS()
TPETRA_INSTANTIATE_SLGN(TPETRA_MATRIXIO_INSTANT)
} // namespace Tpetra::Utils
} // namespace Tpetra
#endif // HAVE_TPETRA_EXPLICIT_INSTANTIATION
|