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
|
/* ******************************************************************** */
/* See the file COPYRIGHT for a complete copyright notice, contact */
/* person and disclaimer. */
/* ******************************************************************** */
#include "ml_config.h"
#include "ml_common.h"
#ifdef HAVE_ML_MLAPI
#include "MLAPI.h"
#include "MLAPI_SAMIS.h"
using namespace Teuchos;
using namespace MLAPI;
// ============== //
// example driver //
// ============== //
int main(int argc, char *argv[])
{
#ifdef HAVE_MPI
MPI_Init(&argc,&argv);
#endif
if (argc != 2) {
fprintf(stderr, "Usage: `%s InputFile'\n", argv[0]);
fprintf(stderr, "An example of input file is reported\n");
fprintf(stderr, "in the source of this example\n");
exit(EXIT_SUCCESS);
}
string InputFile = argv[1];
// Initialize the workspace and set the output level
Init();
try {
int NumPDEEqns;
Operator A;
ReadSAMISMatrix("mtx.dat", A, NumPDEEqns);
Teuchos::ParameterList List = ReadParameterList(InputFile.c_str());
int MaxLevels = List.get("max levels", 10);
int AdditionalCandidates = List.get("additional candidates", 2);
int limKer = List.get("limit kernel", -1);
if (AdditionalCandidates == 0 && limKer == 0)
limKer = -1;
// create multilevel preconditioner, do not compute hierarchy
MultiLevelAdaptiveSA Prec(A, List, NumPDEEqns);
if (limKer) {
MultiVector NS;
ReadSAMISKernel("ker.dat", NS, limKer);
Prec.SetNullSpace(NS);
Prec.AdaptCompute(true, AdditionalCandidates);
}
else {
Prec.AdaptCompute(false, AdditionalCandidates);
}
MultiVector LHS(A.GetDomainSpace());
MultiVector RHS(A.GetRangeSpace());
LHS.Random();
RHS = 0.0;
// Set krylov: type unless specified in the config. file
if (List.isParameter("krylov: type") == 0)
List.set("krylov: type","cg_condnum");
Krylov(A, LHS, RHS, Prec, List);
Finalize();
}
catch (const int e) {
cerr << "Caught integer exception, code = " << e << endl;
}
catch (...) {
cerr << "Caught exception..." << endl;
}
#ifdef HAVE_MPI
MPI_Finalize() ;
#endif
return(0);
}
#else
#include "ml_include.h"
int main(int argc, char *argv[])
{
#ifdef HAVE_MPI
MPI_Init(&argc,&argv);
#endif
puts("This MLAPI example requires the following configuration options:");
puts("\t--enable-epetra");
puts("\t--enable-teuchos");
puts("\t--enable-ifpack");
puts("\t--enable-amesos");
puts("Please check your configure line.");
#ifdef HAVE_MPI
MPI_Finalize();
#endif
return(0);
}
#endif // #if defined(HAVE_ML_MLAPI)
|