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 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558
|
/*
//@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_UnitTestAdditiveSchwarz.cpp
\brief Ifpack2 Unit test for AdditiveSchwarz.
*/
#include "Ifpack2_config.h"
#ifdef HAVE_IFPACK2_AMESOS2
# include "Amesos2_config.h"
#endif // HAVE_IFPACK2_AMESOS2
#include "Teuchos_UnitTestHarness.hpp"
// 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"
#include "Galeri_XpetraParameters.hpp"
#include "Galeri_XpetraUtils.hpp"
#include "Galeri_XpetraMaps.hpp"
#endif // HAVE_IFPACK2_XPETRA
#include "Ifpack2_Relaxation.hpp"
#include "Ifpack2_UnitTestHelpers.hpp"
#include "Ifpack2_AdditiveSchwarz.hpp"
#include "Tpetra_RowMatrix.hpp"
#include "Teuchos_CommHelpers.hpp"
#include "MatrixMarket_Tpetra.hpp"
namespace { // (anonymous)
using Tpetra::global_size_t;
using Teuchos::RCP;
using std::endl;
typedef tif_utest::Node Node;
//this macro declares the unit-test-class:
TEUCHOS_UNIT_TEST_TEMPLATE_3_DECL(Ifpack2AdditiveSchwarz, Test0, Scalar, LocalOrdinal, GlobalOrdinal)
{
//we are now in a class method declared by the above macro, and
//that method has these input arguments:
//Teuchos::FancyOStream& out, bool& success
typedef LocalOrdinal LO;
typedef GlobalOrdinal GO;
typedef Tpetra::CrsMatrix<Scalar,LO,GO,Node> crs_matrix_type;
typedef Tpetra::Map<LO,GO,Node> map_type;
typedef Tpetra::MultiVector<Scalar,LO,GO,Node> MV;
typedef Tpetra::RowMatrix<Scalar,LO,GO,Node> row_matrix_type;
typedef Teuchos::ScalarTraits<Scalar> STS;
const Scalar one = STS::one ();
const Scalar two = STS::one () + STS::one ();
out << "Ifpack2::AdditiveSchwarz: Test0" << endl;
Teuchos::OSTab tab1 (out);
global_size_t num_rows_per_proc = 5;
out << "Creating row Map and CrsMatrix" << endl;
RCP<const map_type> rowmap =
tif_utest::create_tpetra_map<LO, GO, Node> (num_rows_per_proc);
RCP<const crs_matrix_type> crsmatrix =
tif_utest::create_test_matrix<Scalar, LO, GO, Node> (rowmap);
out << "Creating AdditiveSchwarz instance" << endl;
Ifpack2::AdditiveSchwarz<row_matrix_type> prec (crsmatrix);
Teuchos::ParameterList params, zlist;
out << "Filling in ParameterList for AdditiveSchwarz" << endl;
zlist.set ("order_method", "rcm");
zlist.set ("order_method_type", "local");
params.set ("inner preconditioner name", "ILUT");
{
Teuchos::ParameterList innerParams;
innerParams.set ("fact: ilut level-of-fill", 1.0);
innerParams.set ("fact: drop tolerance", 0.0);
params.set ("inner preconditioner parameters", innerParams);
}
params.set ("schwarz: overlap level", static_cast<int> (0));
params.set ("schwarz: combine mode", "Zero");
#if defined(HAVE_IFPACK2_XPETRA) && defined(HAVE_IFPACK2_ZOLTAN2)
params.set ("schwarz: use reordering", true);
params.set ("schwarz: reordering list", zlist);
#else
params.set ("schwarz: use reordering", false);
#endif
out << "Setting AdditiveSchwarz's parameters" << endl;
TEST_NOTHROW(prec.setParameters(params));
out << "Testing domain and range Maps of AdditiveSchwarz" << endl;
// FIXME (mfh 26 Jul 2015) The domain and range Maps of the
// preconditioner don't have to be the same object; they only need
// to be the same in the sense of Tpetra::Map::isSameAs().
//
//trivial tests to insist that the preconditioner's domain/range maps are
//identically those of the matrix:
const map_type* mtx_dom_map_ptr = &*crsmatrix->getDomainMap();
const map_type* mtx_rng_map_ptr = &*crsmatrix->getRangeMap();
const map_type* prec_dom_map_ptr = &*prec.getDomainMap();
const map_type* prec_rng_map_ptr = &*prec.getRangeMap();
TEST_EQUALITY( prec_dom_map_ptr, mtx_dom_map_ptr );
TEST_EQUALITY( prec_rng_map_ptr, mtx_rng_map_ptr );
out << "Calling AdditiveSchwarz's initialize()" << endl;
prec.initialize();
out << "Calling AdditiveSchwarz's compute()" << endl;
prec.compute();
MV x (rowmap, 2), y (rowmap, 2), z (rowmap, 2);
x.putScalar (one);
out << "Applying AdditiveSchwarz to a multivector" << endl;
prec.apply(x, y);
// The solution should now be full of 1/2s
z.putScalar (one / two);
Teuchos::ArrayRCP<const Scalar> yview = y.get1dView();
Teuchos::ArrayRCP<const Scalar> zview = z.get1dView();
TEST_COMPARE_FLOATING_ARRAYS(yview, zview, 4*STS::eps ());
}
// ///////////////////////////////////////////////////////////////////// //
TEUCHOS_UNIT_TEST_TEMPLATE_3_DECL(Ifpack2AdditiveSchwarz, Test1, Scalar, LO, GO)
{
typedef Tpetra::CrsMatrix<Scalar,LO,GO,Node> crs_matrix_type;
typedef Tpetra::Map<LO,GO,Node> map_type;
typedef Tpetra::RowMatrix<Scalar,LO,GO,Node> row_matrix_type;
Teuchos::OSTab tab0 (out);
out << "AdditiveSchwarz Test1" << endl;
global_size_t num_rows_per_proc = 5;
RCP<const map_type> rowmap = tif_utest::create_tpetra_map<LO,GO,Node>(num_rows_per_proc);
// Don't run in serial.
if(rowmap->getComm()->getSize()==1) {
out << "It only makes sense to run this test with 1 MPI process." << endl;
return;
}
RCP<const crs_matrix_type> crsmatrix = tif_utest::create_test_matrix<Scalar,LO,GO,Node>(rowmap);
out << "Create Ifpack2::AdditiveSchwarz instance" << endl;
Ifpack2::AdditiveSchwarz<row_matrix_type> prec (crsmatrix);
Teuchos::ParameterList params, zlist;
zlist.set ("order_method", "rcm");
zlist.set ("order_method_type", "local");
const int overlapLevel=3;
params.set ("schwarz: overlap level", overlapLevel);
params.set ("schwarz: combine mode", "Add");
params.set ("inner preconditioner name", "ILUT");
{
Teuchos::ParameterList innerParams;
innerParams.set ("fact: ilut level-of-fill", 1.0);
innerParams.set ("fact: drop tolerance", 0.0);
params.set ("inner preconditioner parameters", innerParams);
}
#if defined(HAVE_IFPACK2_XPETRA) && defined(HAVE_IFPACK2_ZOLTAN2)
params.set ("schwarz: use reordering", true);
params.set ("schwarz: reordering list", zlist);
#else
params.set ("schwarz: use reordering", false);
#endif
TEST_NOTHROW(prec.setParameters(params));
//trivial tests to insist that the preconditioner's domain/range maps are
//identically those of the matrix:
const map_type* mtx_dom_map_ptr = &*crsmatrix->getDomainMap();
const map_type* mtx_rng_map_ptr = &*crsmatrix->getRangeMap();
const map_type* prec_dom_map_ptr = &*prec.getDomainMap();
const map_type* prec_rng_map_ptr = &*prec.getRangeMap();
TEST_EQUALITY( prec_dom_map_ptr, mtx_dom_map_ptr );
TEST_EQUALITY( prec_rng_map_ptr, mtx_rng_map_ptr );
prec.initialize();
prec.compute();
//prec.describe (* Teuchos::getFancyOStream (Teuchos::rcpFromRef (std::cerr)), Teuchos::VERB_EXTREME);
Tpetra::MultiVector<Scalar,LO,GO,Node> x(rowmap,1), y(rowmap,1), z(rowmap,1);
x.putScalar(1);
prec.apply(x, y);
// The solution should now be full of 1/2s, except at processor boundaries. If z[i] is on a processor
// boundary, the solution will be 0.5 * K, where K is the number of processors that include i in their
// subdomain. The matrix is a 1D operator and we know the amount of overlap, so this is easy to calculate.
z.putScalar(0.5);
Teuchos::ArrayRCP<Scalar> zdata = z.getDataNonConst(0);
int mypid = rowmap->getComm()->getRank();
if ( mypid == 0 ) {
for (int i=0; i<overlapLevel; ++i)
zdata[num_rows_per_proc-i-1] += 0.5;
}
else if (mypid == rowmap->getComm()->getSize()-1) {
for (GO i=0; i<overlapLevel; ++i)
zdata[i] += 0.5;
}
else {
for (GO i=0; i<overlapLevel; ++i)
zdata[i] += 0.5;
for (GO i=0; i<overlapLevel; ++i)
zdata[num_rows_per_proc-i-1] += 0.5;
}
zdata = Teuchos::null;
Teuchos::ArrayRCP<const Scalar> yview = y.get1dView();
Teuchos::ArrayRCP<const Scalar> zview = z.get1dView();
TEST_COMPARE_FLOATING_ARRAYS(yview, zview, 4*Teuchos::ScalarTraits<Scalar>::eps());
}
// ///////////////////////////////////////////////////////////////////// //
TEUCHOS_UNIT_TEST_TEMPLATE_3_DECL(Ifpack2AdditiveSchwarz, Test2, Scalar, LO, GO)
{
typedef Tpetra::CrsMatrix<Scalar,LO,GO,Node> crs_matrix_type;
typedef Tpetra::RowMatrix<Scalar,LO,GO,Node> row_matrix_type;
out << "Ifpack2::AdditiveSchwarz: Test2" << endl;
Teuchos::OSTab tab1 (out);
global_size_t num_rows_per_proc = 5;
const RCP<const Tpetra::Map<LO,GO,Node> > rowmap =
tif_utest::create_tpetra_map<LO,GO,Node>(num_rows_per_proc);
// Don't run in serial.
if(rowmap->getComm()->getSize()==1) {
out << endl << "This test must be run on more than one process." << endl << endl;
return;
}
RCP<const crs_matrix_type> crsmatrix =
tif_utest::create_test_matrix3<Scalar,LO,GO,Node>(rowmap);
Ifpack2::AdditiveSchwarz<row_matrix_type> prec (crsmatrix);
Teuchos::ParameterList params, zlist;
const int overlapLevel=0;
params.set ("schwarz: overlap level", overlapLevel);
params.set ("inner preconditioner name", "ILUT");
{
Teuchos::ParameterList innerParams;
innerParams.set ("fact: ilut level-of-fill", 6.0);
innerParams.set ("fact: drop tolerance", 0.0);
params.set ("inner preconditioner parameters", innerParams);
}
params.set("schwarz: use reordering",false);
TEST_NOTHROW(prec.setParameters(params));
prec.initialize();
prec.compute();
Tpetra::MultiVector<Scalar,LO,GO,Node> x(rowmap,1), y(rowmap,1), z(rowmap,1);
x.putScalar(1);
crsmatrix->apply(x,z);
prec.apply(z, y);
// The solution should now be full of 1s
z.putScalar(1.0);
Teuchos::ArrayRCP<const Scalar> yview = y.get1dView();
Teuchos::ArrayRCP<const Scalar> zview = z.get1dView();
TEST_COMPARE_FLOATING_ARRAYS(yview, zview, 4*Teuchos::ScalarTraits<Scalar>::eps());
}
// ///////////////////////////////////////////////////////////////////// //
// Test RILUK as subdomain solver for AdditiveSchwarz.
TEUCHOS_UNIT_TEST_TEMPLATE_3_DECL(Ifpack2AdditiveSchwarz, RILUK, Scalar, LO, GO)
{
//we are now in a class method declared by the above macro, and
//that method has these input arguments:
//Teuchos::FancyOStream& out, bool& success
typedef Tpetra::CrsMatrix<Scalar,LO,GO,Node> crs_matrix_type;
typedef Tpetra::MultiVector<Scalar,LO,GO,Node> MV;
typedef Tpetra::RowMatrix<Scalar,LO,GO,Node> row_matrix_type;
typedef Tpetra::Map<LO,GO,Node> map_type;
typedef Teuchos::ScalarTraits<Scalar> STS;
Teuchos::OSTab tab0 (out);
out << "Test RILUK as a subdomain solver for AdditiveSchwarz" << endl;
Teuchos::OSTab tab1 (out);
global_size_t num_rows_per_proc = 5;
out << "Creating row Map and CrsMatrix" << endl;
RCP<const map_type> rowmap =
tif_utest::create_tpetra_map<LO,GO,Node>(num_rows_per_proc);
RCP<const crs_matrix_type> crsmatrix =
tif_utest::create_test_matrix<Scalar,LO,GO,Node>(rowmap);
out << "Creating AdditiveSchwarz instance" << endl;
Ifpack2::AdditiveSchwarz<row_matrix_type> prec (crsmatrix);
Teuchos::ParameterList params, zlist;
out << "Filling in ParameterList for AdditiveSchwarz" << endl;
#if defined(HAVE_IFPACK2_XPETRA) && defined(HAVE_IFPACK2_ZOLTAN2)
params.set ("schwarz: use reordering", true);
#else
params.set ("schwarz: use reordering", false);
#endif
params.set ("inner preconditioner name", "RILUK");
out << "Setting AdditiveSchwarz's parameters" << endl;
TEST_NOTHROW(prec.setParameters(params));
out << "Testing domain and range Maps of AdditiveSchwarz" << endl;
//trivial tests to insist that the preconditioner's domain/range maps are
//identically those of the matrix:
const map_type* mtx_dom_map_ptr = &*crsmatrix->getDomainMap();
const map_type* mtx_rng_map_ptr = &*crsmatrix->getRangeMap();
const map_type* prec_dom_map_ptr = &*prec.getDomainMap();
const map_type* prec_rng_map_ptr = &*prec.getRangeMap();
TEST_EQUALITY( prec_dom_map_ptr, mtx_dom_map_ptr );
TEST_EQUALITY( prec_rng_map_ptr, mtx_rng_map_ptr );
out << "Calling AdditiveSchwarz's initialize()" << endl;
prec.initialize();
out << "Calling AdditiveSchwarz's compute()" << endl;
prec.compute();
MV x(rowmap,2), y(rowmap,2), z(rowmap,2);
x.putScalar (STS::one ());
out << "Applying AdditiveSchwarz to a multivector" << endl;
prec.apply (x, y);
out << "Testing result of AdditiveSchwarz's apply" << endl;
// The solution should now be full of 1/2s
const Scalar one = STS::one ();
const Scalar two = one + one;
z.putScalar (one / two);
Teuchos::ArrayRCP<const Scalar> yview = y.get1dView();
Teuchos::ArrayRCP<const Scalar> zview = z.get1dView();
TEST_COMPARE_FLOATING_ARRAYS(yview, zview, 4 * STS::eps ());
}
// ///////////////////////////////////////////////////////////////////// //
// Test RILUK as subdomain solver for AdditiveSchwarz.
TEUCHOS_UNIT_TEST_TEMPLATE_3_DECL(Ifpack2AdditiveSchwarz, RILUK_UserOrdering, Scalar, LO, GO)
{
//we are now in a class method declared by the above macro, and
//that method has these input arguments:
//Teuchos::FancyOStream& out, bool& success
typedef Tpetra::CrsMatrix<Scalar,LO,GO,Node> crs_matrix_type;
typedef Tpetra::MultiVector<Scalar,LO,GO,Node> MV;
typedef Tpetra::RowMatrix<Scalar,LO,GO,Node> row_matrix_type;
typedef Tpetra::Map<LO,GO,Node> map_type;
typedef Teuchos::ScalarTraits<Scalar> STS;
Teuchos::OSTab tab0 (out);
out << "Test RILUK as a subdomain solver for AdditiveSchwarz" << endl;
Teuchos::OSTab tab1 (out);
global_size_t num_rows_per_proc = 5;
out << "Creating row Map and CrsMatrix" << endl;
RCP<const map_type> rowmap =
tif_utest::create_tpetra_map<LO,GO,Node>(num_rows_per_proc);
RCP<const crs_matrix_type> crsmatrix =
tif_utest::create_test_matrix<Scalar,LO,GO,Node>(rowmap);
out << "Creating AdditiveSchwarz instance" << endl;
Ifpack2::AdditiveSchwarz<row_matrix_type> prec (crsmatrix);
Teuchos::ParameterList params;
out << "Filling in ParameterList for AdditiveSchwarz" << endl;
#if defined(HAVE_IFPACK2_XPETRA) && defined(HAVE_IFPACK2_ZOLTAN2)
size_t N = rowmap->getNodeNumElements();
params.set ("schwarz: use reordering", true);
// Now let's do some user ordering. Reverse ordering, because, why not?
Teuchos::ArrayRCP<LO> perm(N), revperm(N);
for(size_t i=0; i<N; i++) {
perm[i]=(N-1)-i;
revperm[i]=(N-1)-i;
}
Teuchos::ParameterList & zlist = params.sublist("schwarz: reordering list");
zlist.set("order_method","user");
zlist.set("user ordering",perm);
zlist.set("user reverse ordering",revperm);
#else
params.set ("schwarz: use reordering", false);
#endif
params.set ("inner preconditioner name", "RILUK");
out << "Setting AdditiveSchwarz's parameters" << endl;
TEST_NOTHROW(prec.setParameters(params));
out << "Testing domain and range Maps of AdditiveSchwarz" << endl;
//trivial tests to insist that the preconditioner's domain/range maps are
//identically those of the matrix:
const map_type* mtx_dom_map_ptr = &*crsmatrix->getDomainMap();
const map_type* mtx_rng_map_ptr = &*crsmatrix->getRangeMap();
const map_type* prec_dom_map_ptr = &*prec.getDomainMap();
const map_type* prec_rng_map_ptr = &*prec.getRangeMap();
TEST_EQUALITY( prec_dom_map_ptr, mtx_dom_map_ptr );
TEST_EQUALITY( prec_rng_map_ptr, mtx_rng_map_ptr );
out << "Calling AdditiveSchwarz's initialize()" << endl;
prec.initialize();
out << "Calling AdditiveSchwarz's compute()" << endl;
prec.compute();
prec.describe(out,Teuchos::VERB_EXTREME);
MV x(rowmap,2), y(rowmap,2), z(rowmap,2);
x.putScalar (STS::one ());
out << "Applying AdditiveSchwarz to a multivector" << endl;
prec.apply (x, y);
out << "Testing result of AdditiveSchwarz's apply" << endl;
// The solution should now be full of 1/2s
const Scalar one = STS::one ();
const Scalar two = one + one;
z.putScalar (one / two);
Teuchos::ArrayRCP<const Scalar> yview = y.get1dView();
Teuchos::ArrayRCP<const Scalar> zview = z.get1dView();
TEST_COMPARE_FLOATING_ARRAYS(yview, zview, 4 * STS::eps ());
}
// ///////////////////////////////////////////////////////////////////// //
TEUCHOS_UNIT_TEST_TEMPLATE_3_DECL(Ifpack2AdditiveSchwarz, TestOverlap, Scalar, LO, GO)
{
// Test that AdditiveSchwarz transfer patterns are correct.
// A vector v such that v(i) = GID(i) is passed in to AS. Using the IdentitySolver with any amount
// of overlap, any subdomain reordering, and combine mode Zero, the solution should be v.
typedef Tpetra::Map<LO, GO, Node> map_type;
typedef Tpetra::CrsMatrix<Scalar,LO,GO,Node> crs_matrix_type;
typedef Tpetra::RowMatrix<Scalar,LO,GO,Node> row_matrix_type;
typedef Tpetra::MultiVector<Scalar,LO,GO,Node> MV;
out << "Ifpack2::AdditiveSchwarz: TestOverlap" << endl;
Teuchos::OSTab tab1 (out);
out << "Test purpose: verify that AdditiveSchwarz transfer patterns are correct." << endl;
global_size_t num_rows_per_proc = 10;
RCP<const map_type> rowmap = tif_utest::create_tpetra_map<LO,GO,Node>(num_rows_per_proc);
// Don't run in serial.
if(rowmap->getComm()->getSize()==1) {
out << endl << "This test must be run on more than one process." << endl << endl;
return;
}
RCP<const crs_matrix_type> crsmatrix =
tif_utest::create_test_matrix2<Scalar, LO, GO, Node> (rowmap);
for (int i=0; i<2; ++i) {
bool reorderSubdomains;
if (i==0) reorderSubdomains=false;
else reorderSubdomains=true;
#if ! defined(HAVE_IFPACK2_XPETRA) || ! defined(HAVE_IFPACK2_ZOLTAN2)
// mfh 19 Nov 2013: Reordering won't work (will throw an exception
// in Ifpack2::AdditiveSchwarz) if Trilinos was not built with
// Xpetra and Zoltan2 enabled. Don't even bother running the test
// in that case.
if (reorderSubdomains) {
continue;
}
#endif
for (int overlapLevel=0; overlapLevel<4; ++overlapLevel) {
Ifpack2::AdditiveSchwarz<row_matrix_type> prec (crsmatrix);
Teuchos::ParameterList params, zlist;
params.set ("schwarz: overlap level", overlapLevel);
params.set ("schwarz: use reordering",reorderSubdomains);
zlist.set ("order_method", "rcm");
zlist.set ("order_method_type", "local");
params.set ("schwarz: reordering list", zlist);
params.set("schwarz: combine mode", "Zero");
params.set ("inner preconditioner name", "IDENTITY");
prec.setParameters(params);
prec.initialize();
prec.compute();
MV x (rowmap, 1), y (rowmap, 1);
Teuchos::ArrayRCP<Scalar> xData = x.getDataNonConst(0);
for (GO j=0; j<xData.size(); ++j)
xData[j] = rowmap->getGlobalElement(j);
xData = Teuchos::null;
prec.apply(x, y);
out << prec.description() << endl;
// The solution should now be full of GIDs.
Teuchos::ArrayRCP<const Scalar> xview = x.get1dView();
Teuchos::ArrayRCP<const Scalar> yview = y.get1dView();
//out.setOutputToRootOnly(-1);
//x.describe(out,Teuchos::VERB_EXTREME);
//y.describe(out,Teuchos::VERB_EXTREME);
TEST_COMPARE_FLOATING_ARRAYS(xview, yview, 4*Teuchos::ScalarTraits<Scalar>::eps());
}
}
}
// ///////////////////////////////////////////////////////////////////// //
#if defined(HAVE_IFPACK2_AMESOS2) && defined(HAVE_IFPACK2_XPETRA) && (defined(HAVE_AMESOS2_SUPERLU) || defined(HAVE_AMESOS2_KLU2))
// Test sparse direct solver as subdomain solver for AdditiveSchwarz.
TEUCHOS_UNIT_TEST_TEMPLATE_3_DECL(Ifpack2AdditiveSchwarz, SparseDirectSolver, SC, LO, GO)
{
using Teuchos::ParameterList;
typedef Node NT;
typedef typename Tpetra::Vector<SC,LO,GO,NT>::mag_type mag_type;
typedef Teuchos::ScalarTraits<SC> STS;
typedef Tpetra::CrsMatrix<SC,LO,GO,NT> crs_matrix_type;
typedef Tpetra::RowMatrix<SC,LO,GO,NT> row_matrix_type;
typedef Tpetra::MultiVector<SC,LO,GO,NT> MV;
typedef Tpetra::Map<LO,GO,NT> map_type;
typedef Xpetra::TpetraCrsMatrix<SC,LO,GO,NT> XCrsType;
typedef Xpetra::Map<LO,GO,NT> XMapType;
typedef Xpetra::MultiVector<SC,LO,GO,NT> XMVectorType;
using Teuchos::REDUCE_MIN;
using Teuchos::outArg;
using Teuchos::reduceAll;
int lclSuccess = 1; // will set again below
int gblSuccess = 0; // output argument
out << "Test Amesos2 sparse direct solver"
#if defined(HAVE_AMESOS2_SUPERLU)
<< " (SuperLU)"
#elif defined(HAVE_AMESOS2_KLU2)
<< " (KLU2)"
#endif
<< " as subdomain solver for AdditiveSchwarz" << endl;
// Generate the matrix using Galeri. Galeri wraps it in an Xpetra
// matrix, so after it finishes, ask it for the Tpetra matrix.
RCP<const Teuchos::Comm<int> > comm = Tpetra::getDefaultComm ();
Teuchos::CommandLineProcessor clp;
GO nx = 10, ny=10, nz=10;
Galeri::Xpetra::Parameters<GO> GaleriParameters (clp, nx, ny, nz, "Laplace2D");
Xpetra::Parameters xpetraParameters (clp);
ParameterList GaleriList = GaleriParameters.GetParameterList ();
RCP<XMapType> xmap =
Galeri::Xpetra::CreateMap<LO, GO, Node> (xpetraParameters.GetLib (),
"Cartesian2D", comm, GaleriList);
RCP<Galeri::Xpetra::Problem<XMapType,XCrsType,XMVectorType> > Pr =
Galeri::Xpetra::BuildProblem<SC,LO,GO,XMapType,XCrsType,XMVectorType> (std::string("Laplace2D"),
xmap, GaleriList);
RCP<XCrsType> XA = Pr->BuildMatrix ();
RCP<crs_matrix_type> A = XA->getTpetra_CrsMatrixNonConst ();
TEST_INEQUALITY(A, Teuchos::null);
RCP<const map_type> rowmap = A->getRowMap ();
out << "Creating AdditiveSchwarz instance" << endl;
Ifpack2::AdditiveSchwarz<row_matrix_type> prec (A);
ParameterList params, zlist;
out << "Filling in ParameterList for AdditiveSchwarz" << endl;
params.set ("schwarz: overlap level", 2);
#if defined(HAVE_IFPACK2_XPETRA) && defined(HAVE_IFPACK2_ZOLTAN2)
params.set ("schwarz: use reordering", true);
#else
params.set ("schwarz: use reordering", false);
#endif
//params.set ("inner preconditioner name", "AMESOS2");
params.set ("subdomain solver name", "AMESOS2");
/*
Here is how to set SuperLU options in the Amesos2 subdomain solve:
<Parameter name="subdomain solver name" type="string" value="AMESOS2"/>
OR
<Parameter name="inner preconditioner name" type="string" value="AMESOS2"/>
<ParameterList name="subdomain solver parameters">
<Parameter name="Amesos2 solver name" type="string" value="klu2"/> //or superlu, superludist, etc.
//if omitted, defaults to superlu
<ParameterList name="Amesos2">
<ParameterList name="SuperLU">
<Parameter name="ILU_Flag" type="bool" value="false"/> //set to true to use SuperLU's ILUTP
</ParameterList>
</ParameterList>
</ParameterList>
*/
ParameterList &subdomainList = params.sublist("subdomain solver parameters");
#if defined(HAVE_AMESOS2_SUPERLU)
subdomainList.set("Amesos2 solver name","superlu");
ParameterList &amesos2List = subdomainList.sublist("Amesos2"); // sublist required by Amesos2
ParameterList &superluList = amesos2List.sublist("SuperLU");
superluList.set("ILU_Flag",false);
#elif defined(HAVE_AMESOS2_KLU2)
subdomainList.set("Amesos2 solver name","klu");
subdomainList.sublist("Amesos2"); // sublist required by Amesos2
#else
# error "This test requires Amesos2 to have support for either SuperLU or KLU."
#endif
out << "Setting AdditiveSchwarz's parameters" << endl;
std::ostringstream ps;
int indent = 4;
params.print(ps, indent);
out << ps.str() << endl;
TEST_NOTHROW(prec.setParameters(params));
lclSuccess = success ? 1 : 0;
gblSuccess = 0; // output argument
reduceAll<int, int> (*comm, REDUCE_MIN, lclSuccess, outArg (gblSuccess));
TEST_EQUALITY_CONST( gblSuccess, 1 );
if (gblSuccess != 1) {
out << "prec.setParameters(params) threw an exception on some process!" << endl;
return; // no sense in continuing
}
out << "Testing domain and range Maps of AdditiveSchwarz" << endl;
//trivial tests to insist that the preconditioner's domain/range maps are
//identically those of the matrix:
const map_type* mtx_dom_map_ptr = &*A->getDomainMap();
const map_type* mtx_rng_map_ptr = &*A->getRangeMap();
const map_type* prec_dom_map_ptr = &*prec.getDomainMap();
const map_type* prec_rng_map_ptr = &*prec.getRangeMap();
TEST_EQUALITY( prec_dom_map_ptr, mtx_dom_map_ptr );
TEST_EQUALITY( prec_rng_map_ptr, mtx_rng_map_ptr );
out << endl << "solve using AdditiveSchwarz with sparse direct method as the subdomain solve" << endl;
out << "Calling AdditiveSchwarz::initialize()" << endl;
TEST_NOTHROW( prec.initialize() );
lclSuccess = success ? 1 : 0;
gblSuccess = 0; // output argument
reduceAll<int, int> (*comm, REDUCE_MIN, lclSuccess, outArg (gblSuccess));
TEST_EQUALITY_CONST( gblSuccess, 1 );
if (gblSuccess != 1) {
out << "prec.initialize() threw an exception on some process!" << endl;
return; // no sense in continuing
}
out << "Calling AdditiveSchwarz::compute()" << endl;
TEST_NOTHROW( prec.compute() );
lclSuccess = success ? 1 : 0;
gblSuccess = 0; // output argument
reduceAll<int, int> (*comm, REDUCE_MIN, lclSuccess, outArg (gblSuccess));
TEST_EQUALITY_CONST( gblSuccess, 1 );
if (gblSuccess != 1) {
out << "prec.compute() threw an exception on some process!" << endl;
//return; // no sense in continuing
}
out << "Generating input and output (multi)vectors" << endl;
const int numCols = 2;
MV x(rowmap, numCols), y(rowmap, numCols);
x.randomize();
if (gblSuccess == 1) {
out << "Calling AdditiveSchwarz::apply()" << endl;
TEST_NOTHROW( prec.apply (x, y) );
lclSuccess = success ? 1 : 0;
gblSuccess = 0; // output argument
reduceAll<int, int> (*comm, REDUCE_MIN, lclSuccess, outArg (gblSuccess));
TEST_EQUALITY_CONST( gblSuccess, 1 );
if (gblSuccess != 1) {
out << "prec.apply(x,y) threw an exception on some process!" << endl;
return; // no sense in continuing
}
}
// Now switch to dense direct solves on the subdomains.
out << endl << "solve using AdditiveSchwarz with dense direct method as the subdomain solve" << endl;
params.set ("subdomain solver name", "DENSE");
prec.setParameters(params);
out << "Calling AdditiveSchwarz::initialize()" << endl;
prec.initialize();
out << "Calling AdditiveSchwarz::compute()" << endl;
prec.compute();
MV z(rowmap,numCols);
out << "Calling AdditiveSchwarz::apply()" << endl;
prec.apply (x, z);
if (gblSuccess == 1) {
out << "Comparing results of two solves" << endl;
}
Teuchos::Array<mag_type> ynorms (y.getNumVectors ());
Teuchos::Array<mag_type> znorms (z.getNumVectors ());
if (gblSuccess == 1) {
y.norm2 (ynorms ());
}
z.norm2 (znorms ());
if (gblSuccess == 1) {
out << "solution norm, sparse direct solve: " << std::setprecision(7) << ynorms[0] << endl;
}
out << "solution norm, dense direct solve: " << std::setprecision(7) << znorms[0] << endl;
if (gblSuccess == 1) {
TEST_FLOATING_EQUALITY(ynorms[0], znorms[0], 10* STS::eps ());
}
}
#endif
// ///////////////////////////////////////////////////////////////////// //
// Test multiple sweeps of additive Schwarz.
TEUCHOS_UNIT_TEST_TEMPLATE_3_DECL(Ifpack2AdditiveSchwarz, MultipleSweeps, Scalar, LocalOrdinal, GlobalOrdinal)
{
using Teuchos::ArrayRCP;
typedef LocalOrdinal LO;
typedef GlobalOrdinal GO;
typedef Tpetra::CrsMatrix<Scalar,LO,GO,Node> crs_matrix_type;
typedef Tpetra::RowMatrix<Scalar,LO,GO,Node> row_matrix_type;
typedef Tpetra::Map<LO,GO,Node> map_type;
typedef Tpetra::MultiVector<Scalar,LO,GO,Node> multivector_type;
typedef Teuchos::ScalarTraits<Scalar> STS;
typedef typename multivector_type::mag_type mag_type;
out << "Test multiple sweeps of AdditiveSchwarz" << endl;
Teuchos::OSTab tab1 (out);
global_size_t num_rows_per_proc = 100;
out << "Creating row Map and CrsMatrix" << endl;
RCP<const map_type> rowmap = tif_utest::create_tpetra_map<LO,GO,Node>(num_rows_per_proc);
RCP<const crs_matrix_type> crsmatrix = tif_utest::create_banded_matrix<Scalar,LO,GO,Node>(rowmap,5);
out << "Creating AdditiveSchwarz instance" << endl;
Ifpack2::AdditiveSchwarz<row_matrix_type> prec1(crsmatrix), prec2(crsmatrix);
Teuchos::ParameterList params1, params2, zlist;
out << "Setting AdditiveSchwarz's parameters" << endl;
// prec1 assumes initial guess is zero
# if defined(HAVE_IFPACK2_XPETRA) && defined(HAVE_IFPACK2_ZOLTAN2)
params1.set ("schwarz: use reordering", true);
# else
params1.set ("schwarz: use reordering", false);
# endif
params1.set ("inner preconditioner name", "RILUK");
params1.set ("schwarz: zero starting solution", true);
TEST_NOTHROW(prec1.setParameters(params1));
// prec2 assumes initial guess is nonzero
# if defined(HAVE_IFPACK2_XPETRA) && defined(HAVE_IFPACK2_ZOLTAN2)
params2.set ("schwarz: use reordering", true);
# else
params2.set ("schwarz: use reordering", false);
# endif
params2.set ("inner preconditioner name", "RILUK");
params2.set ("schwarz: zero starting solution", false);
TEST_NOTHROW(prec2.setParameters(params2));
out << "Testing domain and range Maps of AdditiveSchwarz" << endl;
//trivial tests to insist that the preconditioner's domain/range maps are
//identically those of the matrix:
const map_type* mtx_dom_map_ptr = &*crsmatrix->getDomainMap();
const map_type* mtx_rng_map_ptr = &*crsmatrix->getRangeMap();
const map_type* prec_dom_map_ptr = &*prec1.getDomainMap();
const map_type* prec_rng_map_ptr = &*prec1.getRangeMap();
TEST_EQUALITY( prec_dom_map_ptr, mtx_dom_map_ptr );
TEST_EQUALITY( prec_rng_map_ptr, mtx_rng_map_ptr );
out << "Calling AdditiveSchwarz's initialize()" << endl;
prec1.initialize();
prec2.initialize();
out << "Calling AdditiveSchwarz's compute()" << endl;
prec1.compute();
prec2.compute();
multivector_type b(rowmap,2),
y1(rowmap,2),
y2(rowmap,2),
z1(rowmap,2),
z2(rowmap,2);
//b.putScalar(1);
b.randomize();
y1.putScalar(5);
y2.putScalar(5);
// Test that using a nonzero initial guess works.
out << "Applying AdditiveSchwarz to a multivector" << endl;
prec1.apply (b, y1);
prec2.apply (b, y2);
Teuchos::Array<mag_type> y1norms(2), y2norms(2);
y1.norm2(y1norms());
y2.norm2(y2norms());
out << "schwarz: zero starting solution = "
<< params1.get<bool>("schwarz: zero starting solution")
<< ", ||soln||=" << y1norms[0] << endl;
out << "schwarz: zero starting solution = "
<< params2.get<bool>("schwarz: zero starting solution")
<< ", ||soln||=" << y2norms[0] << endl;
//norm(y1) should be different than norm(y2)
TEST_EQUALITY( (y1norms[0] != y2norms[0]), true);
TEST_EQUALITY( (y1norms[1] != y2norms[1]), true);
// Test multiple sweeps.
const int numSweeps = 5;
params1.set ("inner preconditioner name", "RILUK");
params1.set ("schwarz: zero starting solution", true);
params1.set ("schwarz: overlap level", 1);
params1.set ("schwarz: num iterations", 1);
prec1.setParameters(params1);
prec1.initialize();
prec1.compute();
params2.set ("inner preconditioner name", "RILUK");
params2.set ("schwarz: zero starting solution", true);
params2.set ("schwarz: overlap level", 1);
params2.set ("schwarz: num iterations", numSweeps);
prec2.setParameters(params2);
prec2.initialize();
prec2.compute();
y2.putScalar(0);
prec2.apply(b, y2);
// Compare against Richardson iterations.
multivector_type r(rowmap,2), c(rowmap,2);
Teuchos::Array<mag_type> cnorms(2), rnorms(2);
y1.putScalar(0);
for (int i=0; i < numSweeps; ++i) {
//r=b-A*y1
Tpetra::deep_copy(r, b);
crsmatrix->apply(y1, r, Teuchos::NO_TRANS, -STS::one(), STS::one());
r.norm2(rnorms());
//solve Ac=r
c.putScalar(0);
prec1.apply(r, c);
//y1 = y1 + c
y1.update(STS::one(), c, STS::one());
y1.norm2(y1norms());
c.norm2(cnorms());
out << "iter " << i+1
<< "||res||=" << rnorms[0]
<< ", ||correction||=" << cnorms[0]
<< ", ||soln||=" << y1norms[0] << endl;
}
y1.norm2(y1norms());
y2.norm2(y2norms());
TEST_FLOATING_EQUALITY(y1norms[0], y2norms[0], 10*STS::eps());
TEST_FLOATING_EQUALITY(y1norms[1], y2norms[1], 10*STS::eps());
# ifdef TODO_TESTING
//TODO test multiple sweeps vs. handrolled Richardson iteration
out << "Testing result of AdditiveSchwarz's apply" << endl;
// The solution should now be full of 1/2s
z.putScalar(0.5);
ArrayRCP<const Scalar> yview = y.get1dView();
ArrayRCP<const Scalar> zview = z.get1dView();
TEST_COMPARE_FLOATING_ARRAYS(yview, zview, 4*STS::eps());
# endif
}
//test correctness with ILU subdomain solver
//use MATLAB implementation as gold standard
TEUCHOS_UNIT_TEST_TEMPLATE_3_DECL(Ifpack2AdditiveSchwarz, ILU_Overlap, Scalar, LocalOrdinal, GlobalOrdinal)
{
using std::string;
typedef LocalOrdinal LO;
typedef GlobalOrdinal GO;
typedef Tpetra::CrsMatrix<Scalar,LO,GO,Node> crs_matrix_type;
typedef Tpetra::RowMatrix<Scalar,LO,GO,Node> row_matrix_type;
typedef Tpetra::Map<LO,GO,Node> map_type;
typedef Tpetra::MultiVector<Scalar,LO,GO,Node> multivector_type;
typedef Teuchos::ScalarTraits<Scalar> STS;
typedef Tpetra::MatrixMarket::Reader<crs_matrix_type> Reader;
RCP<const Teuchos::Comm<int> > comm = Tpetra::getDefaultComm ();
//this test can only be run on 4 procs
if(comm->getSize() != 4)
{
out << "AdditiveSchwarz/ILU correctness test must be run on 4 procs.\n";
return;
}
string rowMapFile = "AdditiveSchwarzMatlab_rowmap.mm";
RCP<const map_type> rowMap = Reader::readMapFile(rowMapFile, comm);
string matrixFile = "AdditiveSchwarzMatlab_A.mm";
RCP<crs_matrix_type> A = Reader::readSparseFile(matrixFile, comm);
string rhsFile = "AdditiveSchwarzMatlab_rhs.mm";
RCP<multivector_type> rhs = Reader::readDenseFile(rhsFile, comm, rowMap);
string solFile = "AdditiveSchwarzILU_O_sol.mm";
RCP<multivector_type> sol = Reader::readDenseFile(solFile, comm, rowMap);
RCP<multivector_type> x = rcp(new multivector_type(rowMap, 1));
//set up additive schwarz
Ifpack2::AdditiveSchwarz<row_matrix_type> prec (A);
Teuchos::ParameterList params;
out << "Filling in ParameterList for AdditiveSchwarz with ILU" << endl;
//ILU(0) by using RILUK with fill level = 0 and drop tol = 0
params.set ("inner preconditioner name", "RILUK");
{
Teuchos::ParameterList innerParams;
innerParams.set ("fact: iluk level-of-fill", 0.0);
innerParams.set ("fact: drop tolerance", 0.0);
params.set ("inner preconditioner parameters", innerParams);
}
params.set ("schwarz: zero starting solution", true);
params.set ("schwarz: overlap level", 1);
params.set ("schwarz: combine mode", "ZERO");
params.set ("schwarz: num iterations", 5);
params.set ("schwarz: use reordering", false);
TEST_NOTHROW(prec.setParameters(params));
out << "Calling AdditiveSchwarz's initialize()" << endl;
prec.initialize();
out << "Calling AdditiveSchwarz's compute()" << endl;
prec.compute();
out << "Applying AdditiveSchwarz to a multivector" << endl;
prec.apply(*rhs, *x);
TEST_COMPARE_FLOATING_ARRAYS(sol->get1dView(), x->get1dView(), 4*STS::eps ());
}
TEUCHOS_UNIT_TEST_TEMPLATE_3_DECL(Ifpack2AdditiveSchwarz, ILU_NonOverlap, Scalar, LocalOrdinal, GlobalOrdinal)
{
using std::string;
typedef LocalOrdinal LO;
typedef GlobalOrdinal GO;
typedef Tpetra::CrsMatrix<Scalar,LO,GO,Node> crs_matrix_type;
typedef Tpetra::RowMatrix<Scalar,LO,GO,Node> row_matrix_type;
typedef Tpetra::Map<LO,GO,Node> map_type;
typedef Tpetra::MultiVector<Scalar,LO,GO,Node> multivector_type;
typedef Teuchos::ScalarTraits<Scalar> STS;
typedef Tpetra::MatrixMarket::Reader<crs_matrix_type> Reader;
RCP<const Teuchos::Comm<int> > comm = Tpetra::getDefaultComm ();
//this test can only be run on 4 procs
if(comm->getSize() != 4)
{
out << "AdditiveSchwarz/ILU correctness test must be run on 4 procs.\n";
return;
}
string mapFile = "AdditiveSchwarzMatlab_rowmap.mm";
RCP<const map_type> rowMap = Reader::readMapFile(mapFile, comm);
string matrixFile = "AdditiveSchwarzMatlab_A.mm";
RCP<crs_matrix_type> A = Reader::readSparseFile(matrixFile, comm);
string rhsFile = "AdditiveSchwarzMatlab_rhs.mm";
RCP<multivector_type> rhs = Reader::readDenseFile(rhsFile, comm, rowMap);
string solFile = "AdditiveSchwarzILU_NO_sol.mm";
RCP<multivector_type> sol = Reader::readDenseFile(solFile, comm, rowMap);
RCP<multivector_type> x = rcp(new multivector_type(rowMap, 1));
//set up additive schwarz
Ifpack2::AdditiveSchwarz<row_matrix_type> prec (A);
Teuchos::ParameterList params;
out << "Filling in ParameterList for AdditiveSchwarz with ILU" << endl;
//RILUK with fill = 0 is ILU(0)
params.set ("inner preconditioner name", "RILUK");
{
Teuchos::ParameterList innerParams;
innerParams.set ("fact: iluk level-of-fill", 0.0);
innerParams.set ("fact: drop tolerance", 0.0);
params.set ("inner preconditioner parameters", innerParams);
}
params.set ("schwarz: zero starting solution", true);
params.set ("schwarz: overlap level", 0);
params.set ("schwarz: combine mode", "ZERO");
params.set ("schwarz: num iterations", 5);
params.set ("schwarz: use reordering", false);
TEST_NOTHROW(prec.setParameters(params));
out << "Calling AdditiveSchwarz's initialize()" << endl;
prec.initialize();
out << "Calling AdditiveSchwarz's compute()" << endl;
prec.compute();
out << "Applying AdditiveSchwarz to a multivector" << endl;
prec.apply(*rhs, *x);
auto solView = sol->get1dView();
auto xView = x->get1dView();
TEST_COMPARE_FLOATING_ARRAYS(solView, xView, 4 * STS::eps ());
}
//test correctness with SGS subdomain solver (overlap = 0)
//use MATLAB implementation as gold standard
TEUCHOS_UNIT_TEST_TEMPLATE_3_DECL(Ifpack2AdditiveSchwarz, SGS_NonOverlap, Scalar, LocalOrdinal, GlobalOrdinal)
{
using std::string;
typedef LocalOrdinal LO;
typedef GlobalOrdinal GO;
typedef Tpetra::CrsMatrix<Scalar,LO,GO,Node> crs_matrix_type;
typedef Tpetra::RowMatrix<Scalar,LO,GO,Node> row_matrix_type;
typedef Tpetra::Map<LO,GO,Node> map_type;
typedef Tpetra::MultiVector<Scalar,LO,GO,Node> multivector_type;
typedef Teuchos::ScalarTraits<Scalar> STS;
typedef Tpetra::MatrixMarket::Reader<crs_matrix_type> Reader;
RCP<const Teuchos::Comm<int> > comm = Tpetra::getDefaultComm ();
//this test can only be run on 4 procs
if(comm->getSize() != 4)
{
out << "AdditiveSchwarz/SGS correctness test must be run on 4 procs.\n";
return;
}
string rowMapFile = "AdditiveSchwarzMatlab_rowmap.mm";
RCP<const map_type> rowMap = Reader::readMapFile(rowMapFile, comm);
string matrixFile = "AdditiveSchwarzMatlab_A.mm";
RCP<crs_matrix_type> A = Reader::readSparseFile(matrixFile, comm);
string rhsFile = "AdditiveSchwarzMatlab_rhs.mm";
RCP<multivector_type> rhs = Reader::readDenseFile(rhsFile, comm, rowMap);
string solFile = "AdditiveSchwarzSGS_NO_sol.mm";
RCP<multivector_type> sol = Reader::readDenseFile(solFile, comm, rowMap);
RCP<multivector_type> x = rcp(new multivector_type(rowMap, 1));
//set up additive schwarz
Ifpack2::AdditiveSchwarz<row_matrix_type> prec (A);
Teuchos::ParameterList params;
out << "Filling in ParameterList for AdditiveSchwarz with SGS" << endl;
//Inner solver is 1 SGS sweep
params.set ("inner preconditioner name", "RELAXATION");
{
Teuchos::ParameterList innerParams;
innerParams.set ("relaxation: type", "Symmetric Gauss-Seidel");
innerParams.set ("relaxation: sweeps", 1);
innerParams.set ("relaxation: zero starting solution", true);
params.set ("inner preconditioner parameters", innerParams);
}
params.set ("schwarz: zero starting solution", false);
params.set ("schwarz: overlap level", 0);
params.set ("schwarz: combine mode", "ZERO");
params.set ("schwarz: num iterations", 5);
params.set ("schwarz: use reordering", false);
TEST_NOTHROW(prec.setParameters(params));
out << "Calling AdditiveSchwarz's initialize()" << endl;
prec.initialize();
out << "Calling AdditiveSchwarz's compute()" << endl;
prec.compute();
out << "Applying AdditiveSchwarz to a multivector" << endl;
prec.apply(*rhs, *x);
TEST_COMPARE_FLOATING_ARRAYS(sol->get1dView(), x->get1dView(), 4*STS::eps ());
}
//test correctness with SGS subdomain solver (overlap = 1)
//use MATLAB implementation as gold standard
TEUCHOS_UNIT_TEST_TEMPLATE_3_DECL(Ifpack2AdditiveSchwarz, SGS_Overlap, Scalar, LocalOrdinal, GlobalOrdinal)
{
using std::string;
typedef LocalOrdinal LO;
typedef GlobalOrdinal GO;
typedef Tpetra::CrsMatrix<Scalar,LO,GO,Node> crs_matrix_type;
typedef Tpetra::RowMatrix<Scalar,LO,GO,Node> row_matrix_type;
typedef Tpetra::Map<LO,GO,Node> map_type;
typedef Tpetra::MultiVector<Scalar,LO,GO,Node> multivector_type;
typedef Teuchos::ScalarTraits<Scalar> STS;
typedef Tpetra::MatrixMarket::Reader<crs_matrix_type> Reader;
RCP<const Teuchos::Comm<int> > comm = Tpetra::getDefaultComm ();
//this test can only be run on 4 procs
if(comm->getSize() != 4)
{
out << "AdditiveSchwarz/SGS correctness test must be run on 4 procs.\n";
return;
}
string rowMapFile = "AdditiveSchwarzMatlab_rowmap.mm";
RCP<const map_type> rowMap = Reader::readMapFile(rowMapFile, comm);
string matrixFile = "AdditiveSchwarzMatlab_A.mm";
RCP<crs_matrix_type> A = Reader::readSparseFile(matrixFile, comm);
string rhsFile = "AdditiveSchwarzMatlab_rhs.mm";
RCP<multivector_type> rhs = Reader::readDenseFile(rhsFile, comm, rowMap);
string solFile = "AdditiveSchwarzSGS_O_sol.mm";
RCP<multivector_type> sol = Reader::readDenseFile(solFile, comm, rowMap);
RCP<multivector_type> x = rcp(new multivector_type(rowMap, 1));
//set up additive schwarz
Ifpack2::AdditiveSchwarz<row_matrix_type> prec (A);
Teuchos::ParameterList params;
out << "Filling in ParameterList for AdditiveSchwarz with SGS" << endl;
//Inner solver is 1 SGS sweep
params.set ("inner preconditioner name", "RELAXATION");
{
Teuchos::ParameterList innerParams;
innerParams.set ("relaxation: type", "Symmetric Gauss-Seidel");
innerParams.set ("relaxation: sweeps", 1);
innerParams.set ("relaxation: zero starting solution", true);
params.set ("inner preconditioner parameters", innerParams);
}
params.set ("schwarz: zero starting solution", false);
params.set ("schwarz: overlap level", 1);
params.set ("schwarz: combine mode", "ZERO");
params.set ("schwarz: num iterations", 5);
params.set ("schwarz: use reordering", false);
TEST_NOTHROW(prec.setParameters(params));
out << "Calling AdditiveSchwarz's initialize()" << endl;
prec.initialize();
out << "Calling AdditiveSchwarz's compute()" << endl;
prec.compute();
out << "Applying AdditiveSchwarz to a multivector" << endl;
prec.apply(*rhs, *x);
TEST_COMPARE_FLOATING_ARRAYS(sol->get1dView(), x->get1dView(), 4*STS::eps ());
}
TEUCHOS_UNIT_TEST_TEMPLATE_3_DECL(Ifpack2AdditiveSchwarz, FastILU, Scalar, LocalOrdinal, GlobalOrdinal)
{
typedef LocalOrdinal LO;
typedef GlobalOrdinal GO;
typedef Tpetra::CrsMatrix<Scalar,LO,GO,Node> crs_matrix_type;
typedef Tpetra::Map<LO,GO,Node> map_type;
typedef Tpetra::MultiVector<Scalar,LO,GO,Node> MV;
typedef Tpetra::RowMatrix<Scalar,LO,GO,Node> row_matrix_type;
typedef Teuchos::ScalarTraits<Scalar> STS;
const Scalar one = STS::one ();
const Scalar two = STS::one () + STS::one ();
out << "Ifpack2::AdditiveSchwarz: FastILU" << endl;
Teuchos::OSTab tab1 (out);
global_size_t num_rows_per_proc = 500;
out << "Creating row Map and CrsMatrix" << endl;
RCP<const map_type> rowmap =
tif_utest::create_tpetra_map<LO, GO, Node> (num_rows_per_proc);
RCP<const crs_matrix_type> crsmatrix =
tif_utest::create_test_matrix<Scalar, LO, GO, Node> (rowmap);
out << "Creating AdditiveSchwarz instance" << endl;
Ifpack2::AdditiveSchwarz<row_matrix_type> prec (crsmatrix);
Teuchos::ParameterList params, zlist;
out << "Filling in ParameterList for AdditiveSchwarz" << endl;
zlist.set ("order_method", "rcm");
zlist.set ("order_method_type", "local");
params.set ("inner preconditioner name", "FAST_ILU");
{
Teuchos::ParameterList innerParams;
params.set ("inner preconditioner parameters", innerParams);
}
params.set ("schwarz: overlap level", 0);
params.set ("schwarz: combine mode", "Zero");
#if defined(HAVE_IFPACK2_XPETRA) && defined(HAVE_IFPACK2_ZOLTAN2)
params.set ("schwarz: use reordering", true);
params.set ("schwarz: reordering list", zlist);
#else
params.set ("schwarz: use reordering", false);
#endif
out << "Setting AdditiveSchwarz's parameters" << endl;
TEST_NOTHROW(prec.setParameters(params));
out << "Testing domain and range Maps of AdditiveSchwarz" << endl;
// FIXME (mfh 26 Jul 2015) The domain and range Maps of the
// preconditioner don't have to be the same object; they only need
// to be the same in the sense of Tpetra::Map::isSameAs().
//
//trivial tests to insist that the preconditioner's domain/range maps are
//identically those of the matrix:
const map_type* mtx_dom_map_ptr = &*crsmatrix->getDomainMap();
const map_type* mtx_rng_map_ptr = &*crsmatrix->getRangeMap();
const map_type* prec_dom_map_ptr = &*prec.getDomainMap();
const map_type* prec_rng_map_ptr = &*prec.getRangeMap();
TEST_EQUALITY( prec_dom_map_ptr, mtx_dom_map_ptr );
TEST_EQUALITY( prec_rng_map_ptr, mtx_rng_map_ptr );
out << "Calling AdditiveSchwarz's initialize()" << endl;
prec.initialize();
out << "Calling AdditiveSchwarz's compute()" << endl;
prec.compute();
MV x (rowmap, 2), y (rowmap, 2), z (rowmap, 2);
x.putScalar (one);
out << "Applying AdditiveSchwarz to a multivector" << endl;
prec.apply(x, y);
// The solution should now be full of 1/2s
z.putScalar (one / two);
Teuchos::ArrayRCP<const Scalar> yview = y.get1dView();
Teuchos::ArrayRCP<const Scalar> zview = z.get1dView();
TEST_COMPARE_FLOATING_ARRAYS(yview, zview, 4*STS::eps ());
}
TEUCHOS_UNIT_TEST_TEMPLATE_3_DECL(Ifpack2AdditiveSchwarz, FastIC, Scalar, LocalOrdinal, GlobalOrdinal)
{
typedef LocalOrdinal LO;
typedef GlobalOrdinal GO;
typedef Tpetra::CrsMatrix<Scalar,LO,GO,Node> crs_matrix_type;
typedef Tpetra::Map<LO,GO,Node> map_type;
typedef Tpetra::MultiVector<Scalar,LO,GO,Node> MV;
typedef Tpetra::RowMatrix<Scalar,LO,GO,Node> row_matrix_type;
typedef Teuchos::ScalarTraits<Scalar> STS;
const Scalar one = STS::one ();
const Scalar two = STS::one () + STS::one ();
out << "Ifpack2::AdditiveSchwarz: FastIC" << endl;
Teuchos::OSTab tab1 (out);
global_size_t num_rows_per_proc = 500;
out << "Creating row Map and CrsMatrix" << endl;
RCP<const map_type> rowmap =
tif_utest::create_tpetra_map<LO, GO, Node> (num_rows_per_proc);
RCP<const crs_matrix_type> crsmatrix =
tif_utest::create_test_matrix<Scalar, LO, GO, Node> (rowmap);
out << "Creating AdditiveSchwarz instance" << endl;
Ifpack2::AdditiveSchwarz<row_matrix_type> prec (crsmatrix);
Teuchos::ParameterList params, zlist;
out << "Filling in ParameterList for AdditiveSchwarz" << endl;
zlist.set ("order_method", "rcm");
zlist.set ("order_method_type", "local");
params.set ("inner preconditioner name", "FAST_IC");
{
Teuchos::ParameterList innerParams;
params.set ("inner preconditioner parameters", innerParams);
}
params.set ("schwarz: overlap level", static_cast<int> (0));
params.set ("schwarz: combine mode", "Zero");
#if defined(HAVE_IFPACK2_XPETRA) && defined(HAVE_IFPACK2_ZOLTAN2)
params.set ("schwarz: use reordering", true);
params.set ("schwarz: reordering list", zlist);
#else
params.set ("schwarz: use reordering", false);
#endif
out << "Setting AdditiveSchwarz's parameters" << endl;
TEST_NOTHROW(prec.setParameters(params));
out << "Testing domain and range Maps of AdditiveSchwarz" << endl;
// FIXME (mfh 26 Jul 2015) The domain and range Maps of the
// preconditioner don't have to be the same object; they only need
// to be the same in the sense of Tpetra::Map::isSameAs().
//
//trivial tests to insist that the preconditioner's domain/range maps are
//identically those of the matrix:
const map_type* mtx_dom_map_ptr = &*crsmatrix->getDomainMap();
const map_type* mtx_rng_map_ptr = &*crsmatrix->getRangeMap();
const map_type* prec_dom_map_ptr = &*prec.getDomainMap();
const map_type* prec_rng_map_ptr = &*prec.getRangeMap();
TEST_EQUALITY( prec_dom_map_ptr, mtx_dom_map_ptr );
TEST_EQUALITY( prec_rng_map_ptr, mtx_rng_map_ptr );
out << "Calling AdditiveSchwarz's initialize()" << endl;
prec.initialize();
out << "Calling AdditiveSchwarz's compute()" << endl;
prec.compute();
MV x (rowmap, 2), y (rowmap, 2), z (rowmap, 2);
x.putScalar (one);
out << "Applying AdditiveSchwarz to a multivector" << endl;
prec.apply(x, y);
// The solution should now be full of 1/2s
z.putScalar (one / two);
Teuchos::ArrayRCP<const Scalar> yview = y.get1dView();
Teuchos::ArrayRCP<const Scalar> zview = z.get1dView();
TEST_COMPARE_FLOATING_ARRAYS(yview, zview, 4*STS::eps ());
}
TEUCHOS_UNIT_TEST_TEMPLATE_3_DECL(Ifpack2AdditiveSchwarz, FastILDL, Scalar, LocalOrdinal, GlobalOrdinal)
{
typedef LocalOrdinal LO;
typedef GlobalOrdinal GO;
typedef Tpetra::CrsMatrix<Scalar,LO,GO,Node> crs_matrix_type;
typedef Tpetra::Map<LO,GO,Node> map_type;
typedef Tpetra::MultiVector<Scalar,LO,GO,Node> MV;
typedef Tpetra::RowMatrix<Scalar,LO,GO,Node> row_matrix_type;
typedef Teuchos::ScalarTraits<Scalar> STS;
const Scalar one = STS::one ();
const Scalar two = STS::one () + STS::one ();
out << "Ifpack2::AdditiveSchwarz: FastILDL" << endl;
Teuchos::OSTab tab1 (out);
global_size_t num_rows_per_proc = 500;
out << "Creating row Map and CrsMatrix" << endl;
RCP<const map_type> rowmap =
tif_utest::create_tpetra_map<LO, GO, Node> (num_rows_per_proc);
RCP<const crs_matrix_type> crsmatrix =
tif_utest::create_test_matrix<Scalar, LO, GO, Node> (rowmap);
out << "Creating AdditiveSchwarz instance" << endl;
Ifpack2::AdditiveSchwarz<row_matrix_type> prec (crsmatrix);
Teuchos::ParameterList params, zlist;
out << "Filling in ParameterList for AdditiveSchwarz" << endl;
zlist.set ("order_method", "rcm");
zlist.set ("order_method_type", "local");
params.set ("inner preconditioner name", "FAST_ILDL");
{
Teuchos::ParameterList innerParams;
params.set ("inner preconditioner parameters", innerParams);
}
params.set ("schwarz: overlap level", static_cast<int> (0));
params.set ("schwarz: combine mode", "Zero");
#if defined(HAVE_IFPACK2_XPETRA) && defined(HAVE_IFPACK2_ZOLTAN2)
params.set ("schwarz: use reordering", true);
params.set ("schwarz: reordering list", zlist);
#else
params.set ("schwarz: use reordering", false);
#endif
out << "Setting AdditiveSchwarz's parameters" << endl;
TEST_NOTHROW(prec.setParameters(params));
out << "Testing domain and range Maps of AdditiveSchwarz" << endl;
// FIXME (mfh 26 Jul 2015) The domain and range Maps of the
// preconditioner don't have to be the same object; they only need
// to be the same in the sense of Tpetra::Map::isSameAs().
//
//trivial tests to insist that the preconditioner's domain/range maps are
//identically those of the matrix:
const map_type* mtx_dom_map_ptr = &*crsmatrix->getDomainMap();
const map_type* mtx_rng_map_ptr = &*crsmatrix->getRangeMap();
const map_type* prec_dom_map_ptr = &*prec.getDomainMap();
const map_type* prec_rng_map_ptr = &*prec.getRangeMap();
TEST_EQUALITY( prec_dom_map_ptr, mtx_dom_map_ptr );
TEST_EQUALITY( prec_rng_map_ptr, mtx_rng_map_ptr );
out << "Calling AdditiveSchwarz's initialize()" << endl;
prec.initialize();
out << "Calling AdditiveSchwarz's compute()" << endl;
prec.compute();
MV x (rowmap, 2), y (rowmap, 2), z (rowmap, 2);
x.putScalar (one);
out << "Applying AdditiveSchwarz to a multivector" << endl;
prec.apply(x, y);
// The solution should now be full of 1/2s
z.putScalar (one / two);
Teuchos::ArrayRCP<const Scalar> yview = y.get1dView();
Teuchos::ArrayRCP<const Scalar> zview = z.get1dView();
TEST_COMPARE_FLOATING_ARRAYS(yview, zview, 4*STS::eps ());
}
#if defined(HAVE_IFPACK2_AMESOS2) and defined(HAVE_IFPACK2_XPETRA) and (defined(HAVE_AMESOS2_SUPERLU) || defined(HAVE_AMESOS2_KLU2))
# define IFPACK2_AMESOS2_SUPERLU_SCALAR_ORDINAL(Scalar,LocalOrdinal,GlobalOrdinal) \
TEUCHOS_UNIT_TEST_TEMPLATE_3_INSTANT( Ifpack2AdditiveSchwarz, SparseDirectSolver, Scalar, LocalOrdinal, GlobalOrdinal)
#else
# define IFPACK2_AMESOS2_SUPERLU_SCALAR_ORDINAL(Scalar,LocalOrdinal,GlobalOrdinal)
#endif
#if defined(HAVE_IFPACK2_SHYLU_NODEFASTILU)
#define IFPACK2_FASTILU_SCALAR_ORDINAL(Scalar, LocalOrdinal, GlobalOrdinal) \
TEUCHOS_UNIT_TEST_TEMPLATE_3_INSTANT( Ifpack2AdditiveSchwarz, FastILU, Scalar, LocalOrdinal, GlobalOrdinal) \
TEUCHOS_UNIT_TEST_TEMPLATE_3_INSTANT( Ifpack2AdditiveSchwarz, FastIC, Scalar, LocalOrdinal, GlobalOrdinal) \
TEUCHOS_UNIT_TEST_TEMPLATE_3_INSTANT( Ifpack2AdditiveSchwarz, FastILDL, Scalar, LocalOrdinal, GlobalOrdinal)
#else
#define IFPACK2_FASTILU_SCALAR_ORDINAL(Scalar, LocalOrdinal, GlobalOrdinal)
#endif
# define UNIT_TEST_GROUP_SCALAR_ORDINAL(Scalar,LocalOrdinal,GlobalOrdinal) \
TEUCHOS_UNIT_TEST_TEMPLATE_3_INSTANT( Ifpack2AdditiveSchwarz, Test0, Scalar, LocalOrdinal,GlobalOrdinal) \
TEUCHOS_UNIT_TEST_TEMPLATE_3_INSTANT( Ifpack2AdditiveSchwarz, Test1, Scalar, LocalOrdinal,GlobalOrdinal) \
TEUCHOS_UNIT_TEST_TEMPLATE_3_INSTANT( Ifpack2AdditiveSchwarz, Test2, Scalar, LocalOrdinal,GlobalOrdinal) \
TEUCHOS_UNIT_TEST_TEMPLATE_3_INSTANT( Ifpack2AdditiveSchwarz, RILUK, Scalar, LocalOrdinal,GlobalOrdinal) \
TEUCHOS_UNIT_TEST_TEMPLATE_3_INSTANT( Ifpack2AdditiveSchwarz, RILUK_UserOrdering, Scalar, LocalOrdinal,GlobalOrdinal) \
TEUCHOS_UNIT_TEST_TEMPLATE_3_INSTANT( Ifpack2AdditiveSchwarz, TestOverlap, Scalar, LocalOrdinal, GlobalOrdinal) \
TEUCHOS_UNIT_TEST_TEMPLATE_3_INSTANT( Ifpack2AdditiveSchwarz, MultipleSweeps, Scalar, LocalOrdinal, GlobalOrdinal) \
TEUCHOS_UNIT_TEST_TEMPLATE_3_INSTANT( Ifpack2AdditiveSchwarz, ILU_Overlap, Scalar, LocalOrdinal, GlobalOrdinal) \
TEUCHOS_UNIT_TEST_TEMPLATE_3_INSTANT( Ifpack2AdditiveSchwarz, ILU_NonOverlap, Scalar, LocalOrdinal, GlobalOrdinal) \
TEUCHOS_UNIT_TEST_TEMPLATE_3_INSTANT( Ifpack2AdditiveSchwarz, SGS_NonOverlap, Scalar, LocalOrdinal, GlobalOrdinal) \
TEUCHOS_UNIT_TEST_TEMPLATE_3_INSTANT( Ifpack2AdditiveSchwarz, SGS_Overlap, Scalar, LocalOrdinal, GlobalOrdinal) \
IFPACK2_AMESOS2_SUPERLU_SCALAR_ORDINAL(Scalar, LocalOrdinal, GlobalOrdinal) \
IFPACK2_FASTILU_SCALAR_ORDINAL(Scalar, LocalOrdinal, GlobalOrdinal)
// mfh 26 Aug 2015: Ifpack2::AdditiveSchwarz 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)
|