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 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427
|
/*
//@HEADER
// ***********************************************************************
//
// Ifpack2: Templated Object-Oriented Algebraic Preconditioner Package
// Copyright (2009) Sandia Corporation
//
// Under terms of Contract DE-AC04-94AL85000, there is a non-exclusive
// license for use of this work by or on behalf of the U.S. Government.
//
// 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
*/
/*! \file Ifpack2_UnitTestRelaxation.cpp
\brief Ifpack2 Unit test for the OverlappingRowMatrix template.
*/
#include <Teuchos_ConfigDefs.hpp>
#include <Ifpack2_ConfigDefs.hpp>
#include <Teuchos_UnitTestHarness.hpp>
#include <iostream>
// Xpetra / Galeri
#ifdef HAVE_IFPACK2_XPETRA
#include <Xpetra_ConfigDefs.hpp>
#include <Xpetra_DefaultPlatform.hpp>
#include <Xpetra_Parameters.hpp>
#include <Xpetra_MapFactory.hpp>
#include <Xpetra_TpetraMap.hpp>
#include <Xpetra_CrsMatrix.hpp>
#include <Xpetra_TpetraCrsMatrix.hpp>
#include <Galeri_XpetraProblemFactory.hpp>
#include <Galeri_XpetraMatrixTypes.hpp>
#endif
#include <Ifpack2_UnitTestHelpers.hpp>
#include <Ifpack2_OverlappingRowMatrix.hpp>
#include <Ifpack2_CreateOverlapGraph.hpp>
namespace { // (anonymous)
using Teuchos::ArrayRCP;
using Teuchos::Comm;
using Teuchos::outArg;
using Teuchos::RCP;
using Teuchos::rcp;
using Teuchos::reduceAll;
using Teuchos::REDUCE_MIN;
using std::endl;
typedef tif_utest::Node Node;
typedef Tpetra::global_size_t GST;
// Macro used inside the unit test below. It tests for global error,
// and if so, prints each process' error message and quits the test
// early.
//
// 'out' only prints on Process 0. It's really not OK for other
// processes to print to stdout, but it usually works and we need to
// do it for debugging.
#define IFPACK2OVERLAPPINGROWMATRIX_REPORT_GLOBAL_ERR( WHAT_STRING ) do { \
reduceAll<int, int> (*comm, REDUCE_MIN, lclSuccess, outArg (gblSuccess)); \
TEST_EQUALITY_CONST( gblSuccess, 1 ); \
if (gblSuccess != 1) { \
out << WHAT_STRING << " FAILED on one or more processes!" << endl; \
for (int p = 0; p < numProcs; ++p) { \
if (myRank == p && lclSuccess != 1) { \
std::cout << errStrm.str () << std::flush; \
} \
comm->barrier (); \
comm->barrier (); \
comm->barrier (); \
} \
return; \
} \
} while (false)
TEUCHOS_UNIT_TEST_TEMPLATE_3_DECL(Ifpack2OverlappingRowMatrix, Test0, Scalar, LO, GO)
{
out << "Ifpack2::OverlappingRowMatrix unit test" << endl;
Teuchos::OSTab tab0 (out);
#ifndef HAVE_IFPACK2_XPETRA
out << "This test requires building with Xpetra enabled." << endl;
#else
typedef Tpetra::CrsMatrix<Scalar,LO,GO,Node> CrsType;
typedef Tpetra::RowMatrix<Scalar,LO,GO,Node> row_matrix_type;
typedef Xpetra::TpetraCrsMatrix<Scalar,LO,GO,Node> XCrsType;
typedef Xpetra::Map<LO,GO,Node> XMapType;
typedef Xpetra::MultiVector<Scalar,LO,GO,Node> XMVectorType;
typedef Tpetra::Vector<Scalar,LO,GO,Node> VectorType;
int lclSuccess = 1;
int gblSuccess = 1;
std::ostringstream errStrm; // for error collection
RCP<const Teuchos::Comm<int> > comm = Tpetra::getDefaultComm ();
const int myRank = comm->getRank ();
const int numProcs = comm->getSize ();
Teuchos::CommandLineProcessor clp;
Xpetra::Parameters xpetraParameters (clp);
Teuchos::ParameterList GaleriList;
int nx = 100;
// int nx = 6;
size_t numElementsPerProc = nx*nx;
GaleriList.set("nx", static_cast<GO> (nx));
GaleriList.set("ny", static_cast<GO> (nx * numProcs));
GaleriList.set("n", static_cast<GO> (numElementsPerProc*numProcs));
// Short circuit --- this test should only be run in parallel.
if (numProcs == 1) {
out << "This test is only meaningful if run with multiple MPI processes."
<< endl;
return;
}
const GST INVALID = Teuchos::OrdinalTraits<GST>::invalid ();
RCP<XMapType> xmap;
RCP<Galeri::Xpetra::Problem<XMapType, XCrsType, XMVectorType> > Pr;
RCP<XCrsType> XA;
RCP<CrsType> A;
try {
xmap = Xpetra::MapFactory<LO, GO>::Build (xpetraParameters.GetLib (), INVALID,
numElementsPerProc, 0, comm);
Pr = Galeri::Xpetra::BuildProblem<Scalar, LO, GO, XMapType, XCrsType, XMVectorType> (std::string ("Laplace2D"), xmap, GaleriList);
XA = Pr->BuildMatrix ();
A = XA->getTpetra_CrsMatrixNonConst ();
} catch (std::exception& e) {
lclSuccess = 0;
errStrm << "Problem setup (Galeri or Xpetra) threw exception: " << e.what () << endl;
}
IFPACK2OVERLAPPINGROWMATRIX_REPORT_GLOBAL_ERR( "Problem setup" );
if (A.is_null ()) {
lclSuccess = 0;
}
IFPACK2OVERLAPPINGROWMATRIX_REPORT_GLOBAL_ERR( "A is null on at least one process." );
VectorType X (A->getRowMap ());
VectorType Y (A->getRowMap ());
VectorType Z (A->getRowMap ());
ArrayRCP<ArrayRCP<Scalar> > x_ptr = X.get2dViewNonConst ();
const int OverlapLevel = 5;
// ======================================== //
// Build the overlapping matrix using class //
// Ifpack2::OverlappingRowMatrix. //
// ======================================== //
RCP<Ifpack2::OverlappingRowMatrix<row_matrix_type> > B;
try {
B = rcp (new Ifpack2::OverlappingRowMatrix<row_matrix_type> (A, OverlapLevel));
} catch (std::exception& e) {
lclSuccess = 0;
errStrm << "Ifpack2::OverlappingRowMatrix constructor threw exception: " << e.what () << endl;
}
IFPACK2OVERLAPPINGROWMATRIX_REPORT_GLOBAL_ERR( "Ifpack2::OverlappingRowMatrix constructor" );
size_t NumGlobalRowsB = B->getGlobalNumRows ();
size_t NumGlobalNonzerosB = B->getGlobalNumEntries ();
for (LO i = 0 ; i < static_cast<LO> (A->getNodeNumRows ()); ++i) {
x_ptr[0][i] = 1.0 * A->getRowMap ()->getGlobalElement (i);
}
Y.putScalar (0.0);
VectorType ExtX_B (B->getRowMap ());
VectorType ExtY_B (B->getRowMap ());
ExtY_B.putScalar (0.0);
try {
B->importMultiVector (X,ExtX_B);
B->apply (ExtX_B,ExtY_B);
B->exportMultiVector (ExtY_B, Y, Tpetra::ADD);
} catch (std::exception& e) {
lclSuccess = 0;
errStrm << "Import, apply B, and Export: " << e.what () << endl;
}
IFPACK2OVERLAPPINGROWMATRIX_REPORT_GLOBAL_ERR( "Import, apply B, and Export" );
// ================================================== //
// Build the overlapping graph using //
// CreateOverlappingMatrix. //
// ================================================== //
RCP<const CrsType> C;
try {
C = Ifpack2::createOverlapMatrix<CrsType> (A, OverlapLevel);
} catch (std::exception& e) {
lclSuccess = 0;
errStrm << "Ifpack2::createOverlapMatrix threw an exception" << e.what () << endl;
}
IFPACK2OVERLAPPINGROWMATRIX_REPORT_GLOBAL_ERR( "Ifpack2::createOverlapMatrix" );
// simple checks on global quantities
const size_t NumGlobalRowsC = C->getGlobalNumRows ();
const size_t NumGlobalNonzerosC = C->getGlobalNumEntries ();
TEST_EQUALITY( NumGlobalRowsB, NumGlobalRowsC );
TEST_EQUALITY( NumGlobalNonzerosB, NumGlobalNonzerosC );
// Test fix to github issue #558. Check that all four maps report the same
// number of local elements. This means that LocalFilter can filter based on
// getDomainMap () and getRangeMap (), as desired, and see the overlap
// pattern.
{
const auto n = B->getRowMap ()->getNodeNumElements ();
TEST_EQUALITY( B->getColMap ()->getNodeNumElements (), n );
TEST_EQUALITY( B->getRangeMap ()->getNodeNumElements (), n );
TEST_EQUALITY( B->getDomainMap ()->getNodeNumElements (), n );
}
try {
C->apply (X, Z);
} catch (std::exception& e) {
lclSuccess = 0;
errStrm << "Ifpack2::OverlappingRowMatrix::apply threw an exception" << e.what () << endl;
}
IFPACK2OVERLAPPINGROWMATRIX_REPORT_GLOBAL_ERR( "Ifpack2::OverlappingRowMatrix::apply" );
TEST_COMPARE_FLOATING_ARRAYS( Y.get1dView (), Z.get1dView (), 1e4 * Teuchos::ScalarTraits<Scalar>::eps () );
#endif // HAVE_IFPACK2_XPETRA
}
TEUCHOS_UNIT_TEST_TEMPLATE_3_DECL(Ifpack2OverlappingRowMatrix, getLocalDiag, Scalar, LO, GO)
{
typedef Scalar scalar_type;
typedef LO local_ordinal_type;
typedef GO global_ordinal_type;
typedef Tpetra::Map<>::node_type node_type;
typedef Tpetra::CrsMatrix<scalar_type,
local_ordinal_type,
global_ordinal_type,
node_type> crs_matrix_type;
typedef Tpetra::RowMatrix<scalar_type,
local_ordinal_type,
global_ordinal_type,
node_type> row_matrix_type;
typedef Tpetra::Vector<scalar_type,
local_ordinal_type,
global_ordinal_type,
node_type> vec_type;
typedef Tpetra::Map<local_ordinal_type,
global_ordinal_type,
node_type> map_type;
using Teuchos::Array;
using Teuchos::as;
int OverlapLevel=2;
out << "Testing that OverlappingRowMatrix's getLocalDiag method works properly." << std::endl;
// This test assumes indexBase == 0.
RCP<const Teuchos::Comm<int> > comm = Tpetra::getDefaultComm();
// Short circuit --- this test should only be run in parallel.
if (comm->getSize() == 1) {
out << "This test is only meaningful if run with multiple MPI processes."
<< endl;
return;
}
const size_t numLocalRows = 4;
int myRank = comm->getRank();
const Tpetra::global_size_t globalNumRows = comm->getSize() * numLocalRows;
RCP<const map_type> rowMap(new map_type(globalNumRows, numLocalRows, 0, comm));
RCP<const map_type> domMap = rowMap;
RCP<const map_type> ranMap = rowMap;
out << "Creating and filling matrix A" << endl;
RCP<crs_matrix_type> A(new crs_matrix_type(rowMap, 3));
Array<scalar_type> val(3);
Array<global_ordinal_type> ind(3);
scalar_type zero=0.0;
scalar_type one=1.0;
val[0] = static_cast<scalar_type>(-1.0);
val[1] = static_cast<scalar_type>(2.0);
val[2] = static_cast<scalar_type>(-1.0);
GO gidOffset;
GO nlr = static_cast<GO>(numLocalRows);
Teuchos::scan (*comm, Teuchos::REDUCE_SUM, nlr, Teuchos::outArg (gidOffset));
gidOffset -= numLocalRows;
if (myRank == 0) {
// Row GID 0: Insert [2 -1] into column GIDs [0 1]
ind[1] = 0;
ind[2] = 1;
val[1] = zero;
val[2] = -one;
A->insertGlobalValues(0, ind.view(1, 2), val.view(1, 2));
val[0] = val[2] = -one;
for (LO i=1; i<static_cast<int>(numLocalRows); ++i) {
ind[0]=gidOffset+i-1;
ind[1]=gidOffset+i;
ind[2]=gidOffset+i+1;
val[1]=one*(gidOffset+i); //put gid on the diagonal
A->insertGlobalValues(gidOffset+i, ind.view(0, 3), val.view(0, 3));
}
} else if (myRank == comm->getSize()-1) {
val[0] = val[2] = -one;
for (LO i=0; i<static_cast<int>(numLocalRows)-1; ++i) {
ind[0]=gidOffset+i-1;
ind[1]=gidOffset+i;
ind[2]=gidOffset+i+1;
val[1]=one*(gidOffset+i); //diagonal value is the row GID
A->insertGlobalValues(gidOffset+i, ind.view(0, 3), val.view(0, 3));
}
//last global row
ind[0] = gidOffset+numLocalRows-2;
ind[1] = gidOffset+numLocalRows-1;
val[0] = zero;
val[1] = gidOffset+numLocalRows-1;
A->insertGlobalValues(gidOffset+numLocalRows-1, ind.view(0, 2), val.view(0, 2));
}
else {
val[0] = val[2] = -one;
for (LO i=0; i<static_cast<int>(numLocalRows); ++i) {
ind[0]=gidOffset+i-1;
ind[1]=gidOffset+i;
ind[2]=gidOffset+i+1;
val[1]=one*(gidOffset+i); //diagonal value is the row GID
A->insertGlobalValues(gidOffset+i, ind.view(0, 3), val.view(0, 3));
}
}
A->fillComplete(domMap, ranMap);
//out << "---- A matrix -----" << std::endl;
//out.setOutputToRootOnly(-1);
//A->describe(out,Teuchos::VERB_EXTREME);
//out.setOutputToRootOnly(0);
//out << "-------------------" << std::endl;
RCP<Ifpack2::OverlappingRowMatrix<row_matrix_type> > ovA;
out << "Building overlapping matrix" << std::endl;
try {
ovA = rcp (new Ifpack2::OverlappingRowMatrix<row_matrix_type> (A, OverlapLevel));
} catch (std::exception& e) {
out << "Ifpack2::OverlappingRowMatrix constructor threw exception: " << e.what () << endl;
}
RCP<const map_type> ovRowMap = ovA->getRowMap();
//out << "-- row map --" << std::endl;
//out.setOutputToRootOnly(-1);
//ovRowMap->describe(out,Teuchos::VERB_EXTREME);
//out.setOutputToRootOnly(0);
//out << "-------------" << std::endl;
RCP<vec_type> localDiag = rcp(new vec_type(ovRowMap));
ovA->getLocalDiagCopy(*localDiag);
//out << "-- diagonal --" << std::endl;
//out.setOutputToRootOnly(-1);
//localDiag->describe(out,Teuchos::VERB_EXTREME);
//out.setOutputToRootOnly(0);
//out << "--------------" << std::endl;
Teuchos::Array<Scalar> ldGids(localDiag->getLocalLength());
localDiag->get1dCopy(ldGids());
auto ovrmGids = ovRowMap->getMyGlobalIndices();
TEST_EQUALITY(static_cast<GO>(ldGids.size()),static_cast<GO>(ovrmGids.size()));
for (size_t i=0; i<ovrmGids.size(); ++i)
TEST_EQUALITY(ldGids[i],ovrmGids[i]);
}
#define UNIT_TEST_GROUP_SCALAR_ORDINAL( Scalar, LO, GO ) \
TEUCHOS_UNIT_TEST_TEMPLATE_3_INSTANT( Ifpack2OverlappingRowMatrix, Test0, Scalar, LO, GO ) \
TEUCHOS_UNIT_TEST_TEMPLATE_3_INSTANT( Ifpack2OverlappingRowMatrix, getLocalDiag, Scalar, LO, GO )
// mfh 26 Aug 2015: Ifpack2::OverlappingRowMatrix was only getting
// tested for Scalar = double, LocalOrdinal = int, GlobalOrdinal =
// int, and the default Node type. As part of the fix for Bug 6358,
// I'm removing the assumption that GlobalOrdinal = int exists.
typedef Tpetra::MultiVector<>::scalar_type default_scalar_type;
typedef Tpetra::MultiVector<>::local_ordinal_type default_local_ordinal_type;
typedef Tpetra::MultiVector<>::global_ordinal_type default_global_ordinal_type;
UNIT_TEST_GROUP_SCALAR_ORDINAL(default_scalar_type, default_local_ordinal_type, default_global_ordinal_type)
} // namespace (anonymous)
|