10 #ifndef AMESOS2_CUSOLVER_DEF_HPP
11 #define AMESOS2_CUSOLVER_DEF_HPP
13 #include <Teuchos_Tuple.hpp>
14 #include <Teuchos_ParameterList.hpp>
15 #include <Teuchos_StandardParameterEntryValidators.hpp>
18 #include "Amesos2_cuSOLVER_decl.hpp"
22 template <
class Matrix,
class Vector>
24 Teuchos::RCP<const Matrix> A,
25 Teuchos::RCP<Vector> X,
26 Teuchos::RCP<const Vector> B )
29 auto status = cusolverSpCreate(&data_.handle);
30 TEUCHOS_TEST_FOR_EXCEPTION( status != CUSOLVER_STATUS_SUCCESS,
31 std::runtime_error,
"cusolverSpCreate failed");
33 status = cusolverSpCreateCsrcholInfo(&data_.chol_info);
34 TEUCHOS_TEST_FOR_EXCEPTION( status != CUSOLVER_STATUS_SUCCESS,
35 std::runtime_error,
"cusolverSpCreateCsrcholInfo failed");
37 auto sparse_status = cusparseCreateMatDescr(&data_.desc);
38 TEUCHOS_TEST_FOR_EXCEPTION( sparse_status != CUSPARSE_STATUS_SUCCESS,
39 std::runtime_error,
"cusparseCreateMatDescr failed");
42 template <
class Matrix,
class Vector>
45 cusparseDestroyMatDescr(data_.desc);
46 cusolverSpDestroyCsrcholInfo(data_.chol_info);
47 cusolverSpDestroy(data_.handle);
50 template<
class Matrix,
class Vector>
54 #ifdef HAVE_AMESOS2_TIMERS
55 Teuchos::TimeMonitor preOrderTimer(this->timers_.preOrderTime_);
57 if(do_optimization()) {
58 this->matrixA_->returnRowPtr_kokkos_view(device_row_ptr_view_);
59 this->matrixA_->returnColInd_kokkos_view(device_cols_view_);
63 Amesos2::Util::reorder(
64 device_row_ptr_view_, device_cols_view_,
65 device_perm_, device_peri_, sorted_nnz,
73 template <
class Matrix,
class Vector>
77 #ifdef HAVE_AMESOS2_TIMERS
78 Teuchos::TimeMonitor symFactTimer(this->timers_.symFactTime_);
83 const int size = this->globalNumRows_;
84 const int nnz = device_cols_view_.size();
85 const int * colIdx = device_cols_view_.data();
86 const int * rowPtr = device_row_ptr_view_.data();
87 auto status = cusolverSpXcsrcholAnalysis(
88 data_.handle, size, nnz, data_.desc, rowPtr, colIdx, data_.chol_info);
89 err = (status != CUSOLVER_STATUS_SUCCESS) ? 1 : 0;
92 Teuchos::broadcast(*(this->getComm()), 0, &err);
93 TEUCHOS_TEST_FOR_EXCEPTION(err != 0,
94 std::runtime_error,
"Amesos2 cuSolver symbolic failed.");
99 template <
class Matrix,
class Vector>
104 if(do_optimization()) {
105 this->matrixA_->returnValues_kokkos_view(device_nzvals_view_);
111 device_size_type_array orig_device_row_ptr_view;
112 device_ordinal_type_array orig_device_cols_view;
113 this->matrixA_->returnRowPtr_kokkos_view(orig_device_row_ptr_view);
114 this->matrixA_->returnColInd_kokkos_view(orig_device_cols_view);
115 Amesos2::Util::reorder_values(
116 device_nzvals_view_, orig_device_row_ptr_view, device_row_ptr_view_, orig_device_cols_view,
117 device_perm_, device_peri_, sorted_nnz);
120 const int size = this->globalNumRows_;
121 const int nnz = device_cols_view_.size();
122 const cusolver_type * values = device_nzvals_view_.data();
123 const int * colIdx = device_cols_view_.data();
124 const int * rowPtr = device_row_ptr_view_.data();
126 size_t internalDataInBytes, workspaceInBytes;
127 auto status = function_map::bufferInfo(data_.handle, size, nnz, data_.desc,
128 values, rowPtr, colIdx, data_.chol_info,
129 &internalDataInBytes, &workspaceInBytes);
131 if(status == CUSOLVER_STATUS_SUCCESS) {
132 const size_t buffer_size = workspaceInBytes /
sizeof(cusolver_type);
133 if(buffer_size > buffer_.extent(0)) {
134 buffer_ = device_value_type_array(
135 Kokkos::ViewAllocateWithoutInitializing(
"cusolver buf"), buffer_size);
137 status = function_map::numeric(data_.handle, size, nnz, data_.desc,
138 values, rowPtr, colIdx, data_.chol_info, buffer_.data());
140 err = (status != CUSOLVER_STATUS_SUCCESS) ? 1 : 0;
143 Teuchos::broadcast(*(this->getComm()), 0, &err);
144 TEUCHOS_TEST_FOR_EXCEPTION(err != 0,
145 std::runtime_error,
"Amesos2 cuSolver numeric failed.");
150 template <
class Matrix,
class Vector>
156 const global_size_type ld_rhs = this->root_ ? X->getGlobalLength() : 0;
157 const ordinal_type nrhs = X->getGlobalNumVectors();
161 #ifdef HAVE_AMESOS2_TIMERS
162 Teuchos::TimeMonitor mvConvTimer(this->timers_.vecConvTime_);
163 Teuchos::TimeMonitor redistTimer(this->timers_.vecRedistTime_);
166 const bool initialize_data =
true;
167 const bool do_not_initialize_data =
false;
168 Util::get_1d_copy_helper_kokkos_view<MultiVecAdapter<Vector>,
169 device_solve_array_t>::do_get(initialize_data, B, this->bValues_, Teuchos::as<size_t>(ld_rhs),
170 ROOTED, this->rowIndexBase_);
174 bAssignedX = Util::get_1d_copy_helper_kokkos_view<MultiVecAdapter<Vector>,
175 device_solve_array_t>::do_get(do_not_initialize_data, X, this->xValues_, Teuchos::as<size_t>(ld_rhs),
176 ROOTED, this->rowIndexBase_);
182 #ifdef HAVE_AMESOS2_TIMER
183 Teuchos::TimeMonitor solveTimer(this->timers_.solveTime_);
186 const int size = this->globalNumRows_;
189 Amesos2::Util::apply_reorder_permutation(
190 this->bValues_, this->permute_result_, this->device_perm_);
193 this->permute_result_ = this->bValues_;
196 for(ordinal_type n = 0; n < nrhs; ++n) {
197 const cusolver_type * b = this->permute_result_.data() + n *
size;
198 cusolver_type * x = this->xValues_.data() + n *
size;
199 auto status = function_map::solve(
200 data_.handle, size, b, x, data_.chol_info, buffer_.data());
201 err = (status != CUSOLVER_STATUS_SUCCESS) ? 1 : 0;
207 if(data_.bReorder && err == 0) {
208 Amesos2::Util::apply_reorder_permutation(
209 this->xValues_, this->permute_result_, this->device_peri_);
210 Kokkos::deep_copy(this->xValues_, this->permute_result_);
219 #ifdef HAVE_AMESOS2_TIMERS
220 Teuchos::TimeMonitor redistTimer(this->timers_.vecRedistTime_);
223 Util::template put_1d_data_helper_kokkos_view<
225 Teuchos::as<size_t>(ld_rhs), ROOTED, this->rowIndexBase_);
228 Teuchos::broadcast(*(this->getComm()), 0, &err);
229 TEUCHOS_TEST_FOR_EXCEPTION(err != 0,
230 std::runtime_error,
"Amesos2 cuSolver solve failed.");
235 template <
class Matrix,
class Vector>
239 return( this->matrixA_->getGlobalNumRows() == this->matrixA_->getGlobalNumCols() );
242 template <
class Matrix,
class Vector>
247 using Teuchos::ParameterEntryValidator;
249 RCP<const Teuchos::ParameterList> valid_params = getValidParameters_impl();
251 if( parameterList->isParameter(
"Reorder") ){
252 RCP<const ParameterEntryValidator> reorder_validator = valid_params->getEntry(
"Reorder").validator();
253 parameterList->getEntry(
"Reorder").setValidator(reorder_validator);
256 data_.bReorder = parameterList->get<
bool>(
"Reorder",
true);
259 template <
class Matrix,
class Vector>
260 Teuchos::RCP<const Teuchos::ParameterList>
263 static Teuchos::RCP<const Teuchos::ParameterList> valid_params;
265 if( is_null(valid_params) ){
266 Teuchos::RCP<Teuchos::ParameterList> pl = Teuchos::parameterList();
268 pl->set(
"Reorder",
true,
"Whether GIDs contiguous");
276 template <
class Matrix,
class Vector>
279 return (this->root_ && (this->matrixA_->getComm()->getSize() == 1));
282 template <
class Matrix,
class Vector>
286 if(current_phase == SOLVE) {
290 if(!do_optimization()) {
291 TEUCHOS_TEST_FOR_EXCEPTION(
true, std::runtime_error,
292 "cuSolver is only implemented for serial.");
298 template<
class Matrix,
class Vector>
303 #endif // AMESOS2_CUSOLVER_DEF_HPP
Amesos2::SolverCore: A templated interface for interaction with third-party direct sparse solvers...
Definition: Amesos2_SolverCore_decl.hpp:71
const int size
Definition: klu2_simple.cpp:50
EPhase
Used to indicate a phase in the direct solution.
Definition: Amesos2_TypeDecl.hpp:31
void setParameters_impl(const Teuchos::RCP< Teuchos::ParameterList > ¶meterList)
Definition: Amesos2_cuSOLVER_def.hpp:244
bool matrixShapeOK_impl() const
Determines whether the shape of the matrix is OK for this solver.
Definition: Amesos2_cuSOLVER_def.hpp:237
cuSOLVER(Teuchos::RCP< const Matrix > A, Teuchos::RCP< Vector > X, Teuchos::RCP< const Vector > B)
Initialize from Teuchos::RCP.
Definition: Amesos2_cuSOLVER_def.hpp:23
Teuchos::RCP< const Teuchos::ParameterList > getValidParameters_impl() const
Definition: Amesos2_cuSOLVER_def.hpp:261
Amesos2 interface to cuSOLVER.
Definition: Amesos2_cuSOLVER_decl.hpp:25
int symbolicFactorization_impl()
Perform symbolic factorization of the matrix using cuSOLVER.
Definition: Amesos2_cuSOLVER_def.hpp:75
bool loadA_impl(EPhase current_phase)
Reads matrix data into internal structures.
Definition: Amesos2_cuSOLVER_def.hpp:284
bool do_optimization() const
can we optimize size_type and ordinal_type for straight pass through
Definition: Amesos2_cuSOLVER_def.hpp:278
int numericFactorization_impl()
cuSOLVER specific numeric factorization
Definition: Amesos2_cuSOLVER_def.hpp:101
int preOrdering_impl()
Performs pre-ordering on the matrix to increase efficiency.
Definition: Amesos2_cuSOLVER_def.hpp:52
int solve_impl(const Teuchos::Ptr< MultiVecAdapter< Vector > > X, const Teuchos::Ptr< const MultiVecAdapter< Vector > > B) const
cuSOLVER specific solve.
Definition: Amesos2_cuSOLVER_def.hpp:152
A templated MultiVector class adapter for Amesos2.
Definition: Amesos2_MultiVecAdapter_decl.hpp:142
~cuSOLVER()
Destructor.
Definition: Amesos2_cuSOLVER_def.hpp:43