Block-Structured AMR Software Framework
Loading...
Searching...
No Matches
AMReX_HypreSolver.H
Go to the documentation of this file.
1
5#ifndef AMREX_HYPRE_SOLVER_H_
6#define AMREX_HYPRE_SOLVER_H_
7
8#include <AMReX_Geometry.H>
9#include <AMReX_iMultiFab.H>
10#include <AMReX_HypreIJIface.H>
11#include <AMReX_BLProfiler.H>
12
13#include "HYPRE.h"
14#include "_hypre_utilities.h"
15
16#include <string>
17
18namespace amrex
19{
20
29template <int MSS>
31{
32public:
33
60 template <class Marker, class Filler>
61 HypreSolver (Vector<IndexType> const& a_index_type,
62 IntVect const& a_nghost,
63 Geometry const& a_geom,
64 BoxArray const& a_grids,
65 DistributionMapping const& a_dmap, // NOLINT(modernize-pass-by-value)
66 Marker && a_marker,
67 Filler && a_filler,
68 int a_verbose = 0,
69 std::string a_options_namespace = "hypre");
70
80 template <FabArrayType MF>
81 requires (std::same_as<typename MF::value_type, HYPRE_Real>)
82 void solve (Vector<MF *> const& a_soln,
83 Vector<MF const*> const& a_rhs,
84 HYPRE_Real rel_tol, HYPRE_Real abs_tol, int max_iter);
85
87 int getNumIters () const { return m_hypre_ij->getNumIters(); }
88
90 HYPRE_Real getFinalResidualNorm () const {
91 return m_hypre_ij->getFinalResidualNorm();
92 }
93
95 HYPRE_IJMatrix getA () const { return m_hypre_ij->A(); }
97 HYPRE_IJVector getb () const { return m_hypre_ij->b(); }
99 HYPRE_IJVector getx () const { return m_hypre_ij->x(); }
100
101// public: // for cuda
102
106 template <class Marker>
107#ifdef AMREX_USE_CUDA
109#else
111#endif
112 void fill_local_id (Marker const& marker);
113
115 template <typename AI>
116 void fill_global_id ();
117
126 template <class Filler>
127 requires (IsCallable<Filler,int,int,int,int,int,
129 HYPRE_Int&, HYPRE_Int*,
130 HYPRE_Real*>::value)
131 void fill_matrix (Filler const& filler);
132
139 template <FabArrayType MF>
140 requires (std::same_as<typename MF::value_type, HYPRE_Real>)
141 void load_vectors (Vector<MF *> const& a_soln,
142 Vector<MF const*> const& a_rhs);
143
149 template <FabArrayType MF>
150 requires (std::same_as<typename MF::value_type, HYPRE_Real>)
151 void get_solution (Vector<MF*> const& a_soln);
152
153private:
154
155 int m_nvars;
156 Vector<IndexType> m_index_type;
157 IntVect m_nghost;
158 Geometry m_geom;
159 Vector<BoxArray> m_grids;
160 DistributionMapping m_dmap;
161
162 int m_verbose;
163 std::string m_options_namespace;
164
165 MPI_Comm m_comm = MPI_COMM_NULL;
166
168 Vector<iMultiFab> m_local_id;
171
172#ifdef AMREX_USE_GPU
174#endif
175
176 Vector<LayoutData<HYPRE_Int>> m_nrows_grid;
177 Vector<LayoutData<HYPRE_Int>> m_id_offset;
178 LayoutData<HYPRE_Int> m_nrows;
179 HYPRE_Int m_nrows_proc;
180
181 std::unique_ptr<HypreIJIface> m_hypre_ij;
182
183 // Non-owning references to HYPRE matrix, rhs, and solution data
184 HYPRE_IJMatrix m_A = nullptr;
185 HYPRE_IJVector m_b = nullptr;
186 HYPRE_IJVector m_x = nullptr;
187};
188
189template <int MSS>
190template <class Marker, class Filler>
192 IntVect const& a_nghost,
193 Geometry const& a_geom,
194 BoxArray const& a_grids,
195 DistributionMapping const& a_dmap, // NOLINT(modernize-pass-by-value)
196 Marker && a_marker,
197 Filler && a_filler,
198 int a_verbose,
199 std::string a_options_namespace)
200 : m_nvars (int(a_index_type.size())),
201 m_index_type (a_index_type),
202 m_nghost (a_nghost),
203 m_geom (a_geom),
204 m_dmap (a_dmap),
205 m_verbose (a_verbose),
206 m_options_namespace(std::move(a_options_namespace))
207{
208 BL_PROFILE("HypreSolver()");
209
210#ifdef AMREX_USE_MPI
211 m_comm = ParallelContext::CommunicatorSub(); // NOLINT(cppcoreguidelines-prefer-member-initializer)
212#endif
213
214 m_grids.resize(m_nvars);
215 m_local_id.resize(m_nvars);
216 m_global_id.resize(m_nvars);
217 m_nrows_grid.resize(m_nvars);
218 m_id_offset.resize(m_nvars);
219 Long nrows_max = 0;
220 for (int ivar = 0; ivar < m_nvars; ++ivar) {
221 m_grids [ivar] = amrex::convert(a_grids,m_index_type[ivar]);
222 m_local_id [ivar].define(m_grids[ivar], m_dmap, 1, 0);
223 m_global_id [ivar].define(m_grids[ivar], m_dmap, 1, m_nghost);
224 m_nrows_grid[ivar].define(m_grids[0], m_dmap);
225 m_id_offset [ivar].define(m_grids[0], m_dmap);
226 nrows_max += m_grids[ivar].numPts();
227 }
228 m_global_id_vec.define(m_grids[0], m_dmap);
229 m_nrows.define (m_grids[0], m_dmap);
230 AMREX_ALWAYS_ASSERT_WITH_MESSAGE(nrows_max < static_cast<Long>(std::numeric_limits<HYPRE_Int>::max()-1),
231 "Need to configure Hypre with --enable-bigint");
232
233 m_owner_mask.resize(m_nvars);
234 for (int ivar = 0; ivar < m_nvars; ++ivar) {
235 m_owner_mask[ivar] = amrex::OwnerMask(m_local_id[ivar], m_geom.periodicity());
236 }
237
238#ifdef AMREX_USE_GPU
239 m_cell_offset.define(m_grids[0], m_dmap);
240#endif
241
242 fill_local_id(std::forward<Marker>(a_marker));
243
244 // At this point, m_local_id stores the ids local to each box.
245 // m_nrows_grid stores the number of unique points in each box.
246 // m_nrows_proc is the number of rowss for all variables on this MPI
247 // process. If a point is invalid, its id is invalid (i.e., a very
248 // negative number). Note that the data type of local_node_id is int,
249 // not HYPRE_Int for performance on GPU.
250
251 const int nprocs = ParallelContext::NProcsSub();
252 const int myproc = ParallelContext::MyProcSub();
253
254 Vector<HYPRE_Int> nrows_allprocs(nprocs);
255#ifdef AMREX_USE_MPI
256 if (nrows_allprocs.size() > 1) {
257 MPI_Allgather(&m_nrows_proc, sizeof(HYPRE_Int), MPI_CHAR,
258 nrows_allprocs.data(), sizeof(HYPRE_Int), MPI_CHAR, m_comm);
259 } else
260#endif
261 {
262 nrows_allprocs[0] = m_nrows_proc;
263 }
264
265 HYPRE_Int proc_begin = 0;
266 for (int i = 0; i < myproc; ++i) {
267 proc_begin += nrows_allprocs[i];
268 }
269
270 HYPRE_Int proc_end = proc_begin;
271 for (MFIter mfi(m_nrows_grid[0]); mfi.isValid(); ++mfi) {
272 for (int ivar = 0; ivar < m_nvars; ++ivar) {
273 m_id_offset[ivar][mfi] = proc_end;
274 proc_end += m_nrows_grid[ivar][mfi];
275 }
276 }
277 AMREX_ASSERT(proc_end == proc_begin + m_nrows_proc);
278
279 // To generate global ids for HYPRE, we need to remove duplicates on
280 // nodes shared by multiple Boxes with OverrideSync. So we need to use
281 // a type that supports atomicAdd. HYPRE_Int is either int or long
282 // long. The latter (i.e., long long) does not have native atomicAdd
283 // support in CUDA/HIP, whereas unsigned long long has.
284 using AtomicInt = std::conditional_t<sizeof(HYPRE_Int) == 4,
285 HYPRE_Int, unsigned long long>;
286 fill_global_id<AtomicInt>();
287
288 // Create and initialize A, b & x
289 HYPRE_Int ilower = proc_begin;
290 HYPRE_Int iupper = proc_end-1;
291 m_hypre_ij = std::make_unique<HypreIJIface>(m_comm, ilower, iupper, m_verbose);
292 m_hypre_ij->parse_inputs(m_options_namespace);
293
294 // Obtain non-owning references to the matrix, rhs, and solution data
295 m_A = m_hypre_ij->A();
296 m_b = m_hypre_ij->b();
297 m_x = m_hypre_ij->x();
298
299 fill_matrix(std::forward<Filler>(a_filler));
300}
301
302template <int MSS>
303template <class Marker>
304#ifdef AMREX_USE_CUDA
306#else
308#endif
309void HypreSolver<MSS>::fill_local_id (Marker const& marker)
310{
311 BL_PROFILE("HypreSolver::fill_local_id()");
312
313#ifdef AMREX_USE_GPU
314
315 for (MFIter mfi(m_local_id[0]); mfi.isValid(); ++mfi) {
316 int boxno = mfi.LocalIndex();
317 Long npts_tot = 0;
318 for (int ivar = 0; ivar < m_nvars; ++ivar) {
319 Box const& bx = amrex::convert(mfi.validbox(),m_index_type[ivar]);
320 npts_tot += bx.numPts();
321 }
322 m_cell_offset[mfi].resize(npts_tot);
323 npts_tot = 0;
324 int* p_cell_offset = m_cell_offset[mfi].data();
325 for (int ivar = 0; ivar < m_nvars; ++ivar) {
326 Box const& bx = amrex::convert(mfi.validbox(),m_index_type[ivar]);
327 auto const& lid = m_local_id[ivar].array(mfi);
328 auto const& owner = m_owner_mask[ivar]->const_array(mfi);
329 AMREX_ASSERT(bx.numPts() < static_cast<Long>(std::numeric_limits<int>::max()));
330 const auto npts = static_cast<int>(bx.numPts());
331 int npts_box = amrex::Scan::PrefixSum<int>(npts,
332 [=] AMREX_GPU_DEVICE (int offset) noexcept -> int
333 {
334 const Dim3 cell = bx.atOffset(offset).dim3();
335 int id = (owner ( cell.x,cell.y,cell.z ) &&
336 marker(boxno,cell.x,cell.y,cell.z,ivar)) ? 1 : 0;
337 lid(cell.x,cell.y,cell.z) = id;
338 return id;
339 },
340 [=] AMREX_GPU_DEVICE (int offset, int ps) noexcept
341 {
342 const Dim3 cell = bx.atOffset(offset).dim3();
343 if (lid(cell.x,cell.y,cell.z)) {
344 lid(cell.x,cell.y,cell.z) = ps;
345 p_cell_offset[ps] = offset;
346 } else {
347 lid(cell.x,cell.y,cell.z) = std::numeric_limits<int>::lowest();
348 }
349 },
351 m_nrows_grid[ivar][mfi] = npts_box;
352 npts_tot += npts_box;
353 p_cell_offset += npts_box;
354 }
355 m_cell_offset[mfi].resize(npts_tot);
356 }
357
358#else
359
360#ifdef AMREX_USE_OMP
361#pragma omp parallel
362#endif
363 for (MFIter mfi(m_local_id[0]); mfi.isValid(); ++mfi) {
364 int boxno = mfi.LocalIndex();
365 for (int ivar = 0; ivar < m_nvars; ++ivar) {
366 Box const& bx = amrex::convert(mfi.validbox(),m_index_type[ivar]);
367 auto const& lid = m_local_id[ivar].array(mfi);
368 auto const& owner = m_owner_mask[ivar]->const_array(mfi);
369 int id = 0;
370 const auto lo = amrex::lbound(bx);
371 const auto hi = amrex::ubound(bx);
372 for (int k = lo.z; k <= hi.z; ++k) {
373 for (int j = lo.y; j <= hi.y; ++j) {
374 for (int i = lo.x; i <= hi.x; ++i) {
375 if (owner(i,j,k) && marker(boxno,i,j,k,ivar)) {
376 lid(i,j,k) = id++;
377 } else {
378 lid(i,j,k) = std::numeric_limits<int>::lowest();
379 }
380 }}}
381 m_nrows_grid[ivar][mfi] = id;
382 }
383 }
384#endif
385
386 m_nrows_proc = 0;
387 for (MFIter mfi(m_nrows); mfi.isValid(); ++mfi) {
388 int nrows = 0;
389 for (int ivar = 0; ivar < m_nvars; ++ivar) {
390 nrows += m_nrows_grid[ivar][mfi];
391 }
392 m_nrows[mfi] = nrows;
393 m_nrows_proc += nrows;
394 }
395}
396
397template <int MSS>
398template <typename AI>
399void
401{
402 BL_PROFILE("HypreSolver::fill_global_id()");
403
404 Vector<FabArray<BaseFab<AI>>> global_id_raii;
405 Vector<FabArray<BaseFab<AI>>*> p_global_id;
406
407 if constexpr (std::is_same_v<HYPRE_Int,AI>) {
408 for (int ivar = 0; ivar < m_nvars; ++ivar) {
409 p_global_id.push_back(&(m_global_id[ivar]));
410 }
411 } else {
412 for (int ivar = 0; ivar < m_nvars; ++ivar) {
413 global_id_raii.emplace_back(m_global_id[ivar].boxArray(),
414 m_global_id[ivar].DistributionMap(),
415 1, m_global_id[ivar].nGrowVect());
416 p_global_id.push_back(&(global_id_raii[ivar]));
417 }
418 }
419
420#ifdef AMREX_USE_OMP
421#pragma omp parallel if (Gpu::notInLaunchRegion())
422#endif
423 for (MFIter mfi(m_global_id[0]); mfi.isValid(); ++mfi) {
424 auto& rows_vec = m_global_id_vec[mfi];
425 rows_vec.resize(m_nrows[mfi]);
426
427 HYPRE_Int nrows = 0;
428 for (int ivar = 0; ivar < m_nvars; ++ivar) {
429 HYPRE_Int const os = m_id_offset[ivar][mfi];
430 Box bx = mfi.validbox();
431 bx.convert(m_index_type[ivar]).grow(m_nghost);
432 Array4<AI> const& gid = p_global_id[ivar]->array(mfi);
433 auto const& lid = m_local_id[ivar].const_array(mfi);
434 HYPRE_Int* rows = rows_vec.data() + nrows;
435 nrows += m_nrows_grid[ivar][mfi];
436 amrex::ParallelFor(bx,[=] AMREX_GPU_DEVICE (int i, int j, int k) noexcept
437 {
438 if (lid.contains(i,j,k) && lid(i,j,k) >= 0) {
439 const auto id = lid(i,j,k) + os;
440 rows[lid(i,j,k)] = id;
441 gid(i,j,k) = static_cast<AI>(id);
442 } else {
443 gid(i,j,k) = static_cast<AI>
444 (std::numeric_limits<HYPRE_Int>::max());
445 }
446 });
447 }
448 }
449
450 for (int ivar = 0; ivar < m_nvars; ++ivar) {
451 amrex::OverrideSync(*p_global_id[ivar], *m_owner_mask[ivar],
452 m_geom.periodicity());
453 p_global_id[ivar]->FillBoundary(m_geom.periodicity());
454
455 if constexpr (!std::is_same<HYPRE_Int, AI>()) {
456 auto const& dst = m_global_id[ivar].arrays();
457 auto const& src = p_global_id[ivar]->const_arrays();
458 amrex::ParallelFor(m_global_id[ivar], m_global_id[ivar].nGrowVect(),
459 [=] AMREX_GPU_DEVICE (int b, int i, int j, int k)
460 {
461 dst[b](i,j,k) = static_cast<HYPRE_Int>(src[b](i,j,k));
462 });
463 }
464 }
465}
466
467#ifdef AMREX_USE_GPU
469namespace detail {
470template <typename T>
471void pack_matrix_gpu (Gpu::DeviceVector<HYPRE_Int>& cols_tmp,
475{
476 auto* p_cols_tmp = cols_tmp.data();
477 auto* p_mat_tmp = mat_tmp.data();
478 auto const* p_cols = cols.data();
479 auto const* p_mat = mat.data();
480 const auto N = Long(cols.size());
481 Scan::PrefixSum<T>(N,
482 [=] AMREX_GPU_DEVICE (Long i) -> T
483 {
484 return static_cast<T>(p_cols[i] >= 0);
485 },
486 [=] AMREX_GPU_DEVICE (Long i, T s)
487 {
488 if (p_cols[i] >= 0) {
489 p_cols_tmp[s] = p_cols[i];
490 p_mat_tmp[s] = p_mat[i];
491 }
492 },
494 std::swap(cols_tmp, cols);
495 std::swap(mat_tmp, mat);
496}
497}
499#endif
500
501template <int MSS>
502template <class Filler>
503requires (IsCallable<Filler,int,int,int,int,int,
504 Array4<HYPRE_Int const> const*,
505 HYPRE_Int&, HYPRE_Int*,
506 HYPRE_Real*>::value)
507void
508HypreSolver<MSS>::fill_matrix (Filler const& filler)
509{
510 BL_PROFILE("HypreSolver::fill_matrix()");
511
515
516 MFItInfo mfitinfo;
518 for (MFIter mfi(m_local_id[0],mfitinfo); mfi.isValid(); ++mfi)
519 {
520 int boxno = mfi.LocalIndex();
521 const HYPRE_Int nrows = m_nrows[mfi];
522 if (nrows > 0)
523 {
524 ncols_vec.clear();
525 ncols_vec.resize(nrows);
526 HYPRE_Int* ncols = ncols_vec.data();
527
528 cols_vec.clear();
529 cols_vec.resize(Long(nrows)*MSS, -1);
530 HYPRE_Int* cols = cols_vec.data();
531
532 mat_vec.clear();
533 mat_vec.resize(Long(nrows)*MSS);
534 HYPRE_Real* mat = mat_vec.data();
535
536 Vector<Array4<HYPRE_Int const>> gid_v(m_nvars);
537 for (int ivar = 0; ivar < m_nvars; ++ivar) {
538 gid_v[ivar] = m_global_id[ivar].const_array(mfi);
539 }
540
541#ifdef AMREX_USE_GPU
543 (gid_v.data(), gid_v.size());
544 auto const* pgid = gid_buf.data();
545 auto const* p_cell_offset = m_cell_offset[mfi].data();
546 Long ntot = 0;
547 for (int ivar = 0; ivar < m_nvars; ++ivar) {
548 const HYPRE_Int nrows_var = m_nrows_grid[ivar][mfi];
549 if (nrows_var > 0) {
550 Box const& bx = amrex::convert(mfi.validbox(),m_index_type[ivar]);
551 ntot += Reduce::Sum<Long>(nrows_var,
552 [=] AMREX_GPU_DEVICE (HYPRE_Int offset)
553 {
554 const Dim3 cell = bx.atOffset(p_cell_offset[offset]).dim3();
555 filler(boxno, cell.x, cell.y, cell.z, ivar, pgid,
556 ncols[offset], cols+Long(offset)*MSS,
557 mat+Long(offset)*MSS);
558 return ncols[offset];
559 });
560 p_cell_offset += nrows_var;
561 ncols += nrows_var;
562 cols += Long(nrows_var)*MSS;
563 mat += Long(nrows_var)*MSS;
564 }
565 }
566 Gpu::DeviceVector<HYPRE_Int> cols_tmp(ntot);
567 Gpu::DeviceVector<HYPRE_Real> mat_tmp(ntot);
568 if (ntot >= Long(std::numeric_limits<int>::max())) {
569 detail::pack_matrix_gpu<Long>(cols_tmp, mat_tmp, cols_vec, mat_vec);
570 } else {
571 detail::pack_matrix_gpu<int>(cols_tmp, mat_tmp, cols_vec, mat_vec);
572 }
573#else
574 auto* pgid = gid_v.data();
575 for (int ivar = 0; ivar < m_nvars; ++ivar) {
576 if (m_nrows_grid[ivar][mfi] > 0) {
577 auto const& lid = m_local_id[ivar].const_array(mfi);
578 amrex::Loop(amrex::convert(mfi.validbox(),m_index_type[ivar]),
579 [=,&ncols,&cols,&mat] (int i, int j, int k)
580 {
581 if (lid(i,j,k) >= 0) {
582 filler(boxno, i, j, k, ivar, pgid, *ncols, cols, mat);
583 cols += (*ncols);
584 mat += (*ncols);
585 ++ncols;
586 }
587 });
588 }
589 }
590#endif
591
592 const auto& rows_vec = m_global_id_vec[mfi];
593 HYPRE_Int const* rows = rows_vec.data();
594
596 HYPRE_IJMatrixSetValues(m_A, nrows, ncols_vec.data(), rows,
597 cols_vec.data(), mat_vec.data());
598 Gpu::hypreSynchronize();
599 }
600 }
601 HYPRE_IJMatrixAssemble(m_A);
602}
603
604template <int MSS>
605template <FabArrayType MF>
606requires (std::same_as<typename MF::value_type, HYPRE_Real>)
607void
609 Vector<MF const*> const& a_rhs,
610 HYPRE_Real rel_tol, HYPRE_Real abs_tol, int max_iter)
611{
612 BL_PROFILE("HypreSolver::solve()");
613
614 AMREX_ASSERT(a_soln.size() == m_nvars && a_rhs.size() == m_nvars);
615
616 HYPRE_IJVectorInitialize(m_b);
617 HYPRE_IJVectorInitialize(m_x);
618
619 load_vectors(a_soln, a_rhs);
620
621 HYPRE_IJVectorAssemble(m_x);
622 HYPRE_IJVectorAssemble(m_b);
623
624 m_hypre_ij->solve(rel_tol, abs_tol, max_iter);
625
626 get_solution(a_soln);
627}
628
629template <int MSS>
630template <FabArrayType MF>
631requires (std::same_as<typename MF::value_type, HYPRE_Real>)
632void
634 Vector<MF const*> const& a_rhs)
635{
636 BL_PROFILE("HypreSolver::load_vectors()");
637
638 MFItInfo mfitinfo;
640
643 for (MFIter mfi(*a_soln[0],mfitinfo); mfi.isValid(); ++mfi)
644 {
645 const HYPRE_Int nrows = m_nrows[mfi];
646 if (nrows > 0)
647 {
648 xvec.clear();
649 xvec.resize(nrows);
650 bvec.clear();
651 bvec.resize(nrows);
652 auto* xp = xvec.data();
653 auto* bp = bvec.data();
654
655 HYPRE_Int const* rows = m_global_id_vec[mfi].data();
656
657 HYPRE_Int offset = 0;
658 for (int ivar = 0; ivar < m_nvars; ++ivar) {
659 if (m_nrows_grid[ivar][mfi] > 0) {
660 auto const& xfab = a_soln[ivar]->const_array(mfi);
661 auto const& bfab = a_rhs [ivar]->const_array(mfi);
662 auto const& lid = m_local_id[ivar].const_array(mfi);
663 HYPRE_Real* x = xp + offset;
664 HYPRE_Real* b = bp + offset;
665 Box box = amrex::convert(mfi.validbox(),m_index_type[ivar]);
666 amrex::ParallelFor(box,[=] AMREX_GPU_DEVICE (int i, int j, int k)
667 {
668 if (lid(i,j,k) >= 0) {
669 x[lid(i,j,k)] = xfab(i,j,k);
670 b[lid(i,j,k)] = bfab(i,j,k);
671 }
672 });
673 offset += m_nrows_grid[ivar][mfi];
674 }
675 }
676
677 Gpu::streamSynchronize();
678 HYPRE_IJVectorSetValues(m_x, nrows, rows, xp);
679 HYPRE_IJVectorSetValues(m_b, nrows, rows, bp);
680 Gpu::hypreSynchronize();
681 }
682 }
683}
684
685template <int MSS>
686template <FabArrayType MF>
687requires (std::same_as<typename MF::value_type, HYPRE_Real>)
688void
690{
691 BL_PROFILE("HypreSolver::get_solution()");
692
693 MFItInfo mfitinfo;
695
697 for (MFIter mfi(*a_soln[0],mfitinfo); mfi.isValid(); ++mfi)
698 {
699 const HYPRE_Int nrows = m_nrows[mfi];
700 if (nrows > 0)
701 {
702 xvec.clear();
703 xvec.resize(nrows);
704 auto* xp = xvec.data();
705
706 HYPRE_Int const* rows = m_global_id_vec[mfi].data();
707
708 HYPRE_IJVectorGetValues(m_x, nrows, rows, xp);
709 Gpu::hypreSynchronize();
710
711 HYPRE_Int offset = 0;
712 for (int ivar = 0; ivar < m_nvars; ++ivar) {
713 if (m_nrows_grid[ivar][mfi] > 0) {
714 auto const& xfab = a_soln[ivar]->array(mfi);
715 auto const& lid = m_local_id[ivar].const_array(mfi);
716 HYPRE_Real* x = xp + offset;
717 Box box = amrex::convert(mfi.validbox(),m_index_type[ivar]);
718 amrex::ParallelFor(box,[=] AMREX_GPU_DEVICE (int i, int j, int k)
719 {
720 if (lid(i,j,k) >= 0) {
721 xfab(i,j,k) = x[lid(i,j,k)];
722 }
723 });
724 offset += m_nrows_grid[ivar][mfi];
725 }
726 }
727 Gpu::streamSynchronize();
728 }
729 }
730
731 for (int ivar = 0; ivar < m_nvars; ++ivar) {
732 amrex::OverrideSync(*a_soln[ivar], *m_owner_mask[ivar],
733 m_geom.periodicity());
734 }
735}
736
737}
738
739#endif
#define BL_PROFILE(a)
Definition AMReX_BLProfiler.H:551
#define AMREX_ALWAYS_ASSERT_WITH_MESSAGE(EX, MSG)
Definition AMReX_BLassert.H:49
#define AMREX_ASSERT(EX)
Definition AMReX_BLassert.H:38
#define AMREX_GPU_DEVICE
Definition AMReX_GpuQualifiers.H:18
Array4< int const > offset
Definition AMReX_HypreMLABecLap.cpp:1139
A collection of Boxes stored in an Array.
Definition AMReX_BoxArray.H:564
__host__ __device__ BoxND & grow(int i) noexcept
Definition AMReX_Box.H:649
__host__ __device__ Long numPts() const noexcept
Return the number of points contained in the BoxND.
Definition AMReX_Box.H:364
__host__ __device__ BoxND & convert(IndexTypeND< dim > typ) noexcept
Convert the BoxND from the current type into the argument type. This may change the BoxND coordinates...
Definition AMReX_Box.H:982
__host__ __device__ IntVectND< dim > atOffset(Long offset) const noexcept
Given the offset, compute IntVectND<dim>
Definition AMReX_Box.H:1079
Calculates the distribution of FABs to MPI processes.
Definition AMReX_DistributionMapping.H:43
Rectangular problem domain geometry.
Definition AMReX_Geometry.H:75
Periodicity periodicity() const noexcept
Definition AMReX_Geometry.H:361
Definition AMReX_GpuBuffer.H:24
T const * data() const noexcept
Definition AMReX_GpuBuffer.H:51
Solve Ax = b using HYPRE's generic IJ matrix format where A is a sparse matrix specified using the co...
Definition AMReX_HypreSolver.H:31
HypreSolver(Vector< IndexType > const &a_index_type, IntVect const &a_nghost, Geometry const &a_geom, BoxArray const &a_grids, DistributionMapping const &a_dmap, Marker &&a_marker, Filler &&a_filler, int a_verbose=0, std::string a_options_namespace="hypre")
Definition AMReX_HypreSolver.H:191
void load_vectors(Vector< MF * > const &a_soln, Vector< MF const * > const &a_rhs)
Copy AMReX RHS/initial guess data into the IJ vectors.
Definition AMReX_HypreSolver.H:633
int getNumIters() const
Number of iterations from the last solve().
Definition AMReX_HypreSolver.H:87
void solve(Vector< MF * > const &a_soln, Vector< MF const * > const &a_rhs, HYPRE_Real rel_tol, HYPRE_Real abs_tol, int max_iter)
Solve Ax=b after the constructor assembled the IJ matrix.
Definition AMReX_HypreSolver.H:608
HYPRE_IJVector getx() const
Access the IJ solution handle (non-owning).
Definition AMReX_HypreSolver.H:99
HYPRE_IJMatrix getA() const
Access the assembled IJ matrix handle (non-owning).
Definition AMReX_HypreSolver.H:95
void fill_matrix(Filler const &filler)
Fill each CSR row using the supplied filler functor.
Definition AMReX_HypreSolver.H:508
void fill_local_id(Marker const &marker)
Assign local ids to each owned DOF by invoking marker.
Definition AMReX_HypreSolver.H:309
void get_solution(Vector< MF * > const &a_soln)
Copy IJ solution entries back into AMReX storage.
Definition AMReX_HypreSolver.H:689
void fill_global_id()
Convert the local ids to globally unique ids visible to HYPRE.
Definition AMReX_HypreSolver.H:400
HYPRE_Real getFinalResidualNorm() const
Final residual norm from the last solve().
Definition AMReX_HypreSolver.H:90
HYPRE_IJVector getb() const
Access the assembled IJ RHS handle (non-owning).
Definition AMReX_HypreSolver.H:97
a one-thingy-per-box distributed object
Definition AMReX_LayoutData.H:13
void define(const BoxArray &a_grids, const DistributionMapping &a_dm)
Definition AMReX_LayoutData.H:25
Iterator for looping ever tiles and boxes of amrex::FabArray based containers.
Definition AMReX_MFIter.H:88
bool isValid() const noexcept
Is the iterator valid i.e. is it associated with a FAB?
Definition AMReX_MFIter.H:172
Dynamically allocated vector for trivially copyable data.
Definition AMReX_PODVector.H:308
size_type size() const noexcept
Definition AMReX_PODVector.H:648
void resize(size_type a_new_size, GrowthStrategy strategy=GrowthStrategy::Poisson)
Definition AMReX_PODVector.H:728
void clear() noexcept
Definition AMReX_PODVector.H:646
T * data() noexcept
Definition AMReX_PODVector.H:666
This class is a thin wrapper around std::vector. Unlike vector, Vector::operator[] provides bound che...
Definition AMReX_Vector.H:29
Long size() const noexcept
Definition AMReX_Vector.H:54
amrex_long Long
Definition AMReX_INT.H:30
__host__ __device__ Dim3 ubound(Array4< T > const &a) noexcept
Return the inclusive upper bounds of an Array4 in Dim3 form.
Definition AMReX_Array4.H:1359
__host__ __device__ Dim3 lbound(Array4< T > const &a) noexcept
Return the inclusive lower bounds of an Array4 in Dim3 form.
Definition AMReX_Array4.H:1345
void streamSynchronize() noexcept
Definition AMReX_GpuDevice.H:310
MPI_Comm CommunicatorSub() noexcept
sub-communicator for current frame
Definition AMReX_ParallelContext.H:70
int MyProcSub() noexcept
my sub-rank in current frame
Definition AMReX_ParallelContext.H:76
int NProcsSub() noexcept
number of ranks in current frame
Definition AMReX_ParallelContext.H:74
static constexpr struct amrex::Scan::Type::Exclusive exclusive
static constexpr RetSum noRetSum
Definition AMReX_Scan.H:34
int MPI_Comm
Definition AMReX_ccse-mpi.H:51
static constexpr int MPI_COMM_NULL
Definition AMReX_ccse-mpi.H:59
Definition AMReX_Amr.cpp:50
__host__ __device__ BoxND< dim > convert(const BoxND< dim > &b, const IntVectND< dim > &typ) noexcept
Return a BoxND with different type.
Definition AMReX_Box.H:1567
IntVect nGrowVect(FabArrayBase const &fa)
Definition AMReX_FabArrayBase.cpp:2857
void ParallelFor(TypeList< CTOs... > ctos, std::array< int, sizeof...(CTOs)> const &runtime_options, T N, F &&f)
Definition AMReX_CTOParallelForImpl.H:202
std::unique_ptr< iMultiFab > OwnerMask(FabArrayBase const &mf, const Periodicity &period, const IntVect &ngrow)
Definition AMReX_iMultiFab.cpp:699
const int[]
Definition AMReX_BLProfiler.cpp:1664
__host__ __device__ void Loop(Dim3 lo, Dim3 hi, F const &f) noexcept
Definition AMReX_Loop.H:127
void OverrideSync(FabArray< FAB > &fa, FabArray< IFAB > const &msk, const Periodicity &period)
Definition AMReX_FabArrayUtility.H:1379
BoxArray const & boxArray(FabArrayBase const &fa)
Definition AMReX_FabArrayBase.cpp:2862
A multidimensional array accessor.
Definition AMReX_Array4.H:285
Definition AMReX_Dim3.H:13
int x
Definition AMReX_Dim3.H:13
int z
Definition AMReX_Dim3.H:13
int y
Definition AMReX_Dim3.H:13
Test if a given type T is callable with arguments of type Args...
Definition AMReX_TypeTraits.H:214
Test if a given type T is callable with arguments of type Args...
Definition AMReX_TypeTraits.H:208
Definition AMReX_MFIter.H:20
MFItInfo & DisableDeviceSync() noexcept
Definition AMReX_MFIter.H:47
MFItInfo & UseDefaultStream() noexcept
Definition AMReX_MFIter.H:75