|
Zoltan2
|
#include <UserInputForTests.hpp>
Public Types | |
| typedef Tpetra::Map< zlno_t, zgno_t, znode_t > | map_t |
| typedef Tpetra::Export< zlno_t, zgno_t, znode_t > | export_t |
| typedef Tpetra::Import< zlno_t, zgno_t, znode_t > | import_t |
| typedef map_t::node_type | default_znode_t |
Public Member Functions | |
| UserInputForTests (string path, string testData, const RCP< const Comm< int > > &c, bool debugInfo=false, bool distributeInput=true) | |
| Constructor that reads in a matrix/graph from disk. | |
| UserInputForTests (int x, int y, int z, string matrixType, const RCP< const Comm< int > > &c, bool debugInfo=false, bool distributeInput=true) | |
| Constructor that generates an arbitrary sized sparse matrix. | |
| UserInputForTests (const ParameterList &pList, const RCP< const Comm< int > > &c) | |
| Constructor that can generate a sp matrix or read a matrix/graph file defined in an input parameter list. | |
| RCP< tMVector_t > | getUICoordinates () |
| RCP< tMVector_t > | getUIWeights () |
| RCP< tMVector_t > | getUIEdgeWeights () |
| RCP< tcrsMatrix_t > | getUITpetraCrsMatrix () |
| RCP< tcrsGraph_t > | getUITpetraCrsGraph () |
| RCP< tVector_t > | getUITpetraVector () |
| RCP< tMVector_t > | getUITpetraMultiVector (int nvec) |
| RCP< xcrsMatrix_t > | getUIXpetraCrsMatrix () |
| RCP< xcrsGraph_t > | getUIXpetraCrsGraph () |
| RCP< xVector_t > | getUIXpetraVector () |
| RCP< xMVector_t > | getUIXpetraMultiVector (int nvec) |
| bool | hasInput () |
| bool | hasInputDataType (const string &input_type) |
| bool | hasUICoordinates () |
| bool | hasUIWeights () |
| bool | hasUIEdgeWeights () |
| bool | hasUITpetraCrsMatrix () |
| bool | hasUITpetraCrsGraph () |
| bool | hasUITpetraVector () |
| bool | hasUITpetraMultiVector () |
| bool | hasUIXpetraCrsMatrix () |
| bool | hasUIXpetraCrsGraph () |
| bool | hasUIXpetraVector () |
| bool | hasUIXpetraMultiVector () |
| bool | hasPamgenMesh () |
Static Public Member Functions | |
| static void | getUIRandomData (unsigned int seed, zlno_t length, zscalar_t min, zscalar_t max, ArrayView< ArrayRCP< zscalar_t > > data) |
| Generate lists of random scalars. | |
Definition at line 88 of file UserInputForTests.hpp.
| typedef Tpetra::Map<zlno_t, zgno_t, znode_t> UserInputForTests::map_t |
Definition at line 92 of file UserInputForTests.hpp.
| typedef Tpetra::Export<zlno_t, zgno_t, znode_t> UserInputForTests::export_t |
Definition at line 93 of file UserInputForTests.hpp.
| typedef Tpetra::Import<zlno_t, zgno_t, znode_t> UserInputForTests::import_t |
Definition at line 94 of file UserInputForTests.hpp.
| typedef map_t::node_type UserInputForTests::default_znode_t |
Definition at line 95 of file UserInputForTests.hpp.
| UserInputForTests::UserInputForTests | ( | string | path, |
| string | testData, | ||
| const RCP< const Comm< int > > & | c, | ||
| bool | debugInfo = false, |
||
| bool | distributeInput = true |
||
| ) |
Constructor that reads in a matrix/graph from disk.
| path | is the path to the test data. In the case of Zoltan2 test data it is the path to the "data" directory. In the case of Zoltan1 test data, it is the path to the "test" directory. |
| testData | is the root name of the data file or files of interest. |
| c | is the communicator for the processes that share the data. |
| debugInfo | if true process zero will print out status. |
| distributeInput | if true, initial data will be distributed across processes. Currently distributeInput=false is supported only for Zoltan input, not MatrixMarket files. |
For example, if path is the path to the Zoltan1 test directory and testData is brack2_3, then we'll read in ch_brack2_3/brack2_3.graph and ch_brack2_3/brack2_3.coords.
Definition at line 325 of file UserInputForTests.hpp.
| UserInputForTests::UserInputForTests | ( | int | x, |
| int | y, | ||
| int | z, | ||
| string | matrixType, | ||
| const RCP< const Comm< int > > & | c, | ||
| bool | debugInfo = false, |
||
| bool | distributeInput = true |
||
| ) |
Constructor that generates an arbitrary sized sparse matrix.
| x | the x dimension of the mesh that generates the matrix. |
| y | the y dimension of the mesh that generates the matrix. |
| z | the z dimension of the mesh that generates the matrix. |
| problemType | the type of problem that will generate a sparse matrix from the mesh. If the problemType is empty we'll pick a default. |
| c | is the communicator for the processes that share the data. |
| debugInfo | if true process zero will print out status. |
Problems can be "Laplace1D", "Laplace2D", "Star2D", "BigStar2D", "Laplace3D", "Brick3D" and "Identity". See Galeri::Xpetra::BuildProblem() for more information about problem types.
Definition at line 343 of file UserInputForTests.hpp.
| UserInputForTests::UserInputForTests | ( | const ParameterList & | pList, |
| const RCP< const Comm< int > > & | c | ||
| ) |
Constructor that can generate a sp matrix or read a matrix/graph file defined in an input parameter list.
| pList | the parameter list containing input options |
| problemType | the type of problem that will generate a sparse matrix from the mesh. If the problemType is empty we'll pick a default. |
| c | is the communicator for the processes that share the data. |
| debugInfo | if true process zero will print out status. |
Problems can be "Laplace1D", "Laplace2D", "Star2D", "BigStar2D", "Laplace3D", "Brick3D" and "Identity". See Galeri::Xpetra::BuildProblem() for more information about problem types.
default behavior
Definition at line 373 of file UserInputForTests.hpp.
|
static |
Generate lists of random scalars.
Definition at line 625 of file UserInputForTests.hpp.
| RCP< Zoltan2_TestingFramework::tMVector_t > UserInputForTests::getUICoordinates | ( | ) |
Definition at line 460 of file UserInputForTests.hpp.
| RCP< Zoltan2_TestingFramework::tMVector_t > UserInputForTests::getUIWeights | ( | ) |
Definition at line 467 of file UserInputForTests.hpp.
| RCP< Zoltan2_TestingFramework::tMVector_t > UserInputForTests::getUIEdgeWeights | ( | ) |
Definition at line 472 of file UserInputForTests.hpp.
| RCP< Zoltan2_TestingFramework::tcrsMatrix_t > UserInputForTests::getUITpetraCrsMatrix | ( | ) |
Definition at line 477 of file UserInputForTests.hpp.
| RCP< Zoltan2_TestingFramework::tcrsGraph_t > UserInputForTests::getUITpetraCrsGraph | ( | ) |
Definition at line 484 of file UserInputForTests.hpp.
| RCP< Zoltan2_TestingFramework::tVector_t > UserInputForTests::getUITpetraVector | ( | ) |
Definition at line 491 of file UserInputForTests.hpp.
| RCP< Zoltan2_TestingFramework::tMVector_t > UserInputForTests::getUITpetraMultiVector | ( | int | nvec | ) |
Definition at line 499 of file UserInputForTests.hpp.
| RCP< Zoltan2_TestingFramework::xcrsMatrix_t > UserInputForTests::getUIXpetraCrsMatrix | ( | ) |
Definition at line 507 of file UserInputForTests.hpp.
| RCP< Zoltan2_TestingFramework::xcrsGraph_t > UserInputForTests::getUIXpetraCrsGraph | ( | ) |
Definition at line 514 of file UserInputForTests.hpp.
| RCP< Zoltan2_TestingFramework::xVector_t > UserInputForTests::getUIXpetraVector | ( | ) |
Definition at line 521 of file UserInputForTests.hpp.
| RCP< Zoltan2_TestingFramework::xMVector_t > UserInputForTests::getUIXpetraMultiVector | ( | int | nvec | ) |
Definition at line 526 of file UserInputForTests.hpp.
| bool UserInputForTests::hasInput | ( | ) |
Definition at line 532 of file UserInputForTests.hpp.
| bool UserInputForTests::hasInputDataType | ( | const string & | input_type | ) |
Definition at line 541 of file UserInputForTests.hpp.
| bool UserInputForTests::hasUICoordinates | ( | ) |
Definition at line 565 of file UserInputForTests.hpp.
| bool UserInputForTests::hasUIWeights | ( | ) |
Definition at line 570 of file UserInputForTests.hpp.
| bool UserInputForTests::hasUIEdgeWeights | ( | ) |
Definition at line 575 of file UserInputForTests.hpp.
| bool UserInputForTests::hasUITpetraCrsMatrix | ( | ) |
Definition at line 580 of file UserInputForTests.hpp.
| bool UserInputForTests::hasUITpetraCrsGraph | ( | ) |
Definition at line 585 of file UserInputForTests.hpp.
| bool UserInputForTests::hasUITpetraVector | ( | ) |
Definition at line 590 of file UserInputForTests.hpp.
| bool UserInputForTests::hasUITpetraMultiVector | ( | ) |
Definition at line 595 of file UserInputForTests.hpp.
| bool UserInputForTests::hasUIXpetraCrsMatrix | ( | ) |
Definition at line 600 of file UserInputForTests.hpp.
| bool UserInputForTests::hasUIXpetraCrsGraph | ( | ) |
Definition at line 605 of file UserInputForTests.hpp.
| bool UserInputForTests::hasUIXpetraVector | ( | ) |
Definition at line 610 of file UserInputForTests.hpp.
| bool UserInputForTests::hasUIXpetraMultiVector | ( | ) |
Definition at line 615 of file UserInputForTests.hpp.
| bool UserInputForTests::hasPamgenMesh | ( | ) |
Definition at line 620 of file UserInputForTests.hpp.