Amesos2 - Direct Sparse Solver Interfaces  Version of the Day
Amesos2_Basker_def.hpp
Go to the documentation of this file.
1 // @HEADER
2 //
3 // ***********************************************************************
4 //
5 // Amesos2: Templated Direct Sparse Solver Package
6 // Copyright 2011 Sandia Corporation
7 //
8 // Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
9 // the U.S. Government retains certain rights in this software.
10 //
11 // Redistribution and use in source and binary forms, with or without
12 // modification, are permitted provided that the following conditions are
13 // met:
14 //
15 // 1. Redistributions of source code must retain the above copyright
16 // notice, this list of conditions and the following disclaimer.
17 //
18 // 2. Redistributions in binary form must reproduce the above copyright
19 // notice, this list of conditions and the following disclaimer in the
20 // documentation and/or other materials provided with the distribution.
21 //
22 // 3. Neither the name of the Corporation nor the names of the
23 // contributors may be used to endorse or promote products derived from
24 // this software without specific prior written permission.
25 //
26 // THIS SOFTWARE IS PROVIDED BY SANDIA CORPORATION "AS IS" AND ANY
27 // EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28 // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 // PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SANDIA CORPORATION OR THE
30 // CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
31 // EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
32 // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
33 // PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
34 // LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
35 // NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
36 // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
37 //
38 // Questions? Contact Michael A. Heroux (maherou@sandia.gov)
39 //
40 // ***********************************************************************
41 //
42 // @HEADER
43 
53 #ifndef AMESOS2_BASKER_DEF_HPP
54 #define AMESOS2_BASKER_DEF_HPP
55 
56 #include <Teuchos_Tuple.hpp>
57 #include <Teuchos_ParameterList.hpp>
58 #include <Teuchos_StandardParameterEntryValidators.hpp>
59 
61 #include "Amesos2_Basker_decl.hpp"
62 
63 namespace Amesos2 {
64 
65 
66 template <class Matrix, class Vector>
67 Basker<Matrix,Vector>::Basker(
68  Teuchos::RCP<const Matrix> A,
69  Teuchos::RCP<Vector> X,
70  Teuchos::RCP<const Vector> B )
71  : SolverCore<Amesos2::Basker,Matrix,Vector>(A, X, B)
72  , is_contiguous_(true)
73 // , basker()
74 {
75  //Nothing
76 }
77 
78 
79 template <class Matrix, class Vector>
80 Basker<Matrix,Vector>::~Basker( )
81 {}
82 
83 template <class Matrix, class Vector>
84 bool
86  return (this->root_ && (this->matrixA_->getComm()->getSize() == 1) && is_contiguous_);
87 }
88 
89 template<class Matrix, class Vector>
90 int
92 {
93  /* TODO: Define what it means for Basker
94  */
95 #ifdef HAVE_AMESOS2_TIMERS
96  Teuchos::TimeMonitor preOrderTimer(this->timers_.preOrderTime_);
97 #endif
98 
99  return(0);
100 }
101 
102 
103 template <class Matrix, class Vector>
104 int
106 {
107  /*No symbolic factoriztion*/
108  return(0);
109 }
110 
111 
112 template <class Matrix, class Vector>
113 int
115 {
116  using Teuchos::as;
117 
118  int info = 0;
119  if ( this->root_ ){
120  { // Do factorization
121  #ifdef HAVE_AMESOS2_TIMERS
122  Teuchos::TimeMonitor numFactTimer(this->timers_.numFactTime_);
123  #endif
124 
125  #ifdef HAVE_AMESOS2_VERBOSE_DEBUG
126  std::cout << "Basker:: Before numeric factorization" << std::endl;
127  std::cout << "nzvals_ : " << nzvals_.toString() << std::endl;
128  std::cout << "rowind_ : " << rowind_.toString() << std::endl;
129  std::cout << "colptr_ : " << colptr_.toString() << std::endl;
130  #endif
131 
132  basker_dtype * pBaskerValues = function_map::convert_scalar(host_nzvals_view_.data());
133  info = basker.factor(this->globalNumRows_, this->globalNumCols_, this->globalNumNonZeros_, host_col_ptr_view_.data(), host_rows_view_.data(), pBaskerValues);
134 
135  // This is set after numeric factorization complete as pivoting can be used;
136  // In this case, a discrepancy between symbolic and numeric nnz total can occur.
137  this->setNnzLU( as<size_t>(basker.get_NnzLU() ) ) ;
138  }
139 
140  }
141 
142  /* All processes should have the same error code */
143  Teuchos::broadcast(*(this->matrixA_->getComm()), 0, &info);
144 
145  //global_size_type info_st = as<global_size_type>(info);
146  /* TODO : Proper error messages*/
147  TEUCHOS_TEST_FOR_EXCEPTION( (info == -1) ,
148  std::runtime_error,
149  "Basker: Could not alloc space for L and U");
150  TEUCHOS_TEST_FOR_EXCEPTION( (info == -2),
151  std::runtime_error,
152  "Basker: Could not alloc needed work space");
153  TEUCHOS_TEST_FOR_EXCEPTION( (info == -3) ,
154  std::runtime_error,
155  "Basker: Could not alloc additional memory needed for L and U");
156  TEUCHOS_TEST_FOR_EXCEPTION( (info > 0) ,
157  std::runtime_error,
158  "Basker: Zero pivot found at: " << info );
159 
160  return(info);
161 }
162 
163 
164 template <class Matrix, class Vector>
165 int
167  const Teuchos::Ptr<MultiVecAdapter<Vector> > X,
168  const Teuchos::Ptr<const MultiVecAdapter<Vector> > B) const
169 {
170  int ierr = 0; // returned error code
171 
172  using Teuchos::as;
173 
174  const global_size_type ld_rhs = this->root_ ? X->getGlobalLength() : 0;
175  const size_t nrhs = X->getGlobalNumVectors();
176 
177  bool bDidAssignX;
178  { // Get values from RHS B
179 #ifdef HAVE_AMESOS2_TIMERS
180  Teuchos::TimeMonitor mvConvTimer(this->timers_.vecConvTime_);
181  Teuchos::TimeMonitor redistTimer( this->timers_.vecRedistTime_ );
182 #endif
183 
184  const bool initialize_data = true;
185  const bool do_not_initialize_data = false;
186  if ( single_proc_optimization() && nrhs == 1 ) {
187  // no msp creation
188  Util::get_1d_copy_helper_kokkos_view<MultiVecAdapter<Vector>,
189  host_solve_array_t>::do_get(initialize_data, B, bValues_, as<size_t>(ld_rhs));
190 
191  bDidAssignX = Util::get_1d_copy_helper_kokkos_view<MultiVecAdapter<Vector>,
192  host_solve_array_t>::do_get(do_not_initialize_data, X, xValues_, as<size_t>(ld_rhs));
193  }
194  else {
195  Util::get_1d_copy_helper_kokkos_view<MultiVecAdapter<Vector>,
196  host_solve_array_t>::do_get(initialize_data, B, bValues_,
197  as<size_t>(ld_rhs),
198  (is_contiguous_ == true) ? ROOTED : CONTIGUOUS_AND_ROOTED,
199  this->rowIndexBase_);
200 
201  // See Amesos2_Tacho_def.hpp for notes on why we 'get' x here.
202  bDidAssignX = Util::get_1d_copy_helper_kokkos_view<MultiVecAdapter<Vector>,
203  host_solve_array_t>::do_get(do_not_initialize_data, X, xValues_,
204  as<size_t>(ld_rhs),
205  (is_contiguous_ == true) ? ROOTED : CONTIGUOUS_AND_ROOTED,
206  this->rowIndexBase_);
207  }
208  }
209 
210  if ( this->root_ ) { // do solve
211 #ifdef HAVE_AMESOS2_TIMERS
212  Teuchos::TimeMonitor solveTimer(this->timers_.solveTime_);
213 #endif
214 
215  basker_dtype * pxBaskerValues = function_map::convert_scalar(xValues_.data());
216  basker_dtype * pbBaskerValues = function_map::convert_scalar(bValues_.data());
217  ierr = basker.solveMultiple(nrhs, pbBaskerValues, pxBaskerValues);
218  }
219 
220  /* All processes should have the same error code */
221  Teuchos::broadcast(*(this->getComm()), 0, &ierr);
222 
223  TEUCHOS_TEST_FOR_EXCEPTION( ierr > 0,
224  std::runtime_error,
225  "Encountered zero diag element at: " << ierr);
226  TEUCHOS_TEST_FOR_EXCEPTION( ierr == -1,
227  std::runtime_error,
228  "Could not alloc needed working memory for solve" );
229 
230  // if bDidAssignX, then we solved straight to the adapter's X memory space without
231  // requiring additional memory allocation, so the x data is already in place.
232  if(!bDidAssignX) {
233 #ifdef HAVE_AMESOS2_TIMERS
234  Teuchos::TimeMonitor redistTimer(this->timers_.vecRedistTime_);
235 #endif
236 
237  Util::put_1d_data_helper_kokkos_view<MultiVecAdapter<Vector>,
238  host_solve_array_t>::do_put(X, xValues_,
239  as<size_t>(ld_rhs),
240  (is_contiguous_ == true) ? ROOTED : CONTIGUOUS_AND_ROOTED);
241  }
242 
243  return(ierr);
244 }
245 
246 
247 template <class Matrix, class Vector>
248 bool
250 {
251  // The Basker can only handle square for right now
252  return( this->globalNumRows_ == this->globalNumCols_ );
253 }
254 
255 
256 template <class Matrix, class Vector>
257 void
258 Basker<Matrix,Vector>::setParameters_impl(const Teuchos::RCP<Teuchos::ParameterList> & parameterList )
259 {
260  using Teuchos::RCP;
261  using Teuchos::getIntegralValue;
262  using Teuchos::ParameterEntryValidator;
263 
264  RCP<const Teuchos::ParameterList> valid_params = getValidParameters_impl();
265 
266  if(parameterList->isParameter("IsContiguous"))
267  {
268  is_contiguous_ = parameterList->get<bool>("IsContiguous");
269  }
270 
271 }
272 
273 template <class Matrix, class Vector>
274 Teuchos::RCP<const Teuchos::ParameterList>
276 {
277  using Teuchos::ParameterList;
278 
279  static Teuchos::RCP<const Teuchos::ParameterList> valid_params;
280 
281  if( is_null(valid_params) ){
282  Teuchos::RCP<Teuchos::ParameterList> pl = Teuchos::parameterList();
283 
284  pl->set("IsContiguous", true, "Are GIDs contiguous");
285  pl->set("alnnz", 2, "Approx number of nonzeros in L, default is 2*nnz(A)");
286  pl->set("aunnx", 2, "Approx number of nonzeros in I, default is 2*nnz(U)");
287  valid_params = pl;
288  }
289  return valid_params;
290 }
291 
292 
293 template <class Matrix, class Vector>
294 bool
296 {
297  using Teuchos::as;
298  if(current_phase == SOLVE) return (false);
299 
300  #ifdef HAVE_AMESOS2_TIMERS
301  Teuchos::TimeMonitor convTimer(this->timers_.mtxConvTime_);
302  #endif
303 
304  // Only the root image needs storage allocated
305  if( this->root_ ){
306  host_nzvals_view_ = host_value_type_array(
307  Kokkos::ViewAllocateWithoutInitializing("host_nzvals_view_"), this->globalNumNonZeros_);
308  host_rows_view_ = host_ordinal_type_array(
309  Kokkos::ViewAllocateWithoutInitializing("host_rows_view_"), this->globalNumNonZeros_);
310  host_col_ptr_view_ = host_ordinal_type_array(
311  Kokkos::ViewAllocateWithoutInitializing("host_col_ptr_view_"), this->globalNumRows_ + 1);
312  }
313 
314  local_ordinal_type nnz_ret = 0;
315  {
316  #ifdef HAVE_AMESOS2_TIMERS
317  Teuchos::TimeMonitor mtxRedistTimer( this->timers_.mtxRedistTime_ );
318  #endif
319 
321  MatrixAdapter<Matrix>,host_value_type_array,host_ordinal_type_array,host_ordinal_type_array>
322  ::do_get(this->matrixA_.ptr(),
323  host_nzvals_view_, host_rows_view_, host_col_ptr_view_, nnz_ret,
324  (is_contiguous_ == true) ? ROOTED : CONTIGUOUS_AND_ROOTED,
325  ARBITRARY,
326  this->rowIndexBase_);
327  }
328 
329  if( this->root_ ){
330  TEUCHOS_TEST_FOR_EXCEPTION( nnz_ret != as<local_ordinal_type>(this->globalNumNonZeros_),
331  std::runtime_error,
332  "Amesos2_Basker loadA_impl: Did not get the expected number of non-zero vals");
333  }
334  return true;
335 }
336 
337 
338 template<class Matrix, class Vector>
339 const char* Basker<Matrix,Vector>::name = "Basker";
340 
341 
342 } // end namespace Amesos2
343 
344 #endif // AMESOS2_Basker_DEF_HPP
A generic helper class for getting a CCS representation of a Matrix.
Definition: Amesos2_Util.hpp:648
EPhase
Used to indicate a phase in the direct solution.
Definition: Amesos2_TypeDecl.hpp:65
bool loadA_impl(EPhase current_phase)
Reads matrix data into internal structures.
Definition: Amesos2_Basker_def.hpp:295
Teuchos::RCP< const Teuchos::ParameterList > getValidParameters_impl() const
Definition: Amesos2_Basker_def.hpp:275
Amesos2 interface to the Baker package.
Definition: Amesos2_Basker_decl.hpp:73
Amesos2 Basker declarations.
bool single_proc_optimization() const
can we optimize size_type and ordinal_type for straight pass through,
Definition: Amesos2_Basker_def.hpp:85
A Matrix adapter interface for Amesos2.
Definition: Amesos2_MatrixAdapter_decl.hpp:76
bool matrixShapeOK_impl() const
Determines whether the shape of the matrix is OK for this solver.
Definition: Amesos2_Basker_def.hpp:249
int preOrdering_impl()
Performs pre-ordering on the matrix to increase efficiency.
Definition: Amesos2_Basker_def.hpp:91
int numericFactorization_impl()
Basker specific numeric factorization.
Definition: Amesos2_Basker_def.hpp:114
A templated MultiVector class adapter for Amesos2.
Definition: Amesos2_MultiVecAdapter_decl.hpp:176
int solve_impl(const Teuchos::Ptr< MultiVecAdapter< Vector > > X, const Teuchos::Ptr< const MultiVecAdapter< Vector > > B) const
Basker specific solve.
Definition: Amesos2_Basker_def.hpp:166