10 #ifndef MUELU_AMGXOPERATOR_DEF_HPP
11 #define MUELU_AMGXOPERATOR_DEF_HPP
13 #if defined(HAVE_MUELU_AMGX)
41 vectorTimer1_->start();
46 if (comm->getSize() == 1) {
47 amgxXdata = mueluXdata;
48 amgxYdata = mueluYdata;
51 int n = mueluXdata.
size();
56 ArrayRCP<double> amgxXdata_nonConst = Teuchos::arcp_const_cast<
double>(amgxXdata);
57 for (
int j = 0; j < n; j++) {
58 amgxXdata_nonConst[muelu2amgx_[j]] = mueluXdata[j];
59 amgxYdata[muelu2amgx_[j]] = mueluYdata[j];
63 AMGX_vector_upload(X_, N_, 1, &amgxXdata[0]);
64 AMGX_vector_upload(Y_, N_, 1, &amgxYdata[0]);
66 vectorTimer1_->stop();
67 vectorTimer1_->incrementNumCalls();
71 solverTimer_->start();
72 AMGX_solver_solve(Solver_, X_, Y_);
74 solverTimer_->incrementNumCalls();
77 vectorTimer2_->start();
79 AMGX_vector_download(Y_, &amgxYdata[0]);
81 if (comm->getSize() > 1) {
82 int n = mueluYdata.
size();
84 for (
int j = 0; j < n; j++)
85 mueluYdata[j] = amgxYdata[muelu2amgx_[j]];
88 vectorTimer2_->stop();
89 vectorTimer2_->incrementNumCalls();
93 }
catch (std::exception& e) {
94 std::string errMsg = std::string(
"Caught an exception in MueLu::AMGXOperator::Apply():\n") + e.what() +
"\n";
105 #endif // if defined(HAVE_MUELU_AMGX)
107 #endif // ifdef MUELU_AMGXOPERATOR_DEF_HPP
size_t getNumVectors() const
Teuchos::RCP< const Map > getRangeMap() const
Returns the Tpetra::Map object associated with the range of this operator.
Teuchos::ArrayRCP< const Scalar > getData(size_t j) const
void resize(const size_type n, const T &val=T())
void apply(const MultiVector &X, MultiVector &Y, Teuchos::ETransp mode=Teuchos::NO_TRANS, Scalar alpha=Teuchos::ScalarTraits< Scalar >::one(), Scalar beta=Teuchos::ScalarTraits< Scalar >::zero()) const
Returns a solution for the linear system AX=Y in the Tpetra::MultiVector X.
Teuchos::ArrayRCP< Scalar > getDataNonConst(size_t j)
Teuchos::RCP< const Map > getDomainMap() const
Returns the Tpetra::Map object associated with the domain of this operator.
virtual Teuchos::RCP< const map_type > getMap() const
Exception throws to report errors in the internal logical of the program.
bool hasTransposeApply() const
Indicates whether this operator supports applying the adjoint operator.