MueLu  Version of the Day
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
MueLu_VectorDroppingClassical_decl.hpp
Go to the documentation of this file.
1 // @HEADER
2 // *****************************************************************************
3 // MueLu: A package for multigrid based preconditioning
4 //
5 // Copyright 2012 NTESS and the MueLu contributors.
6 // SPDX-License-Identifier: BSD-3-Clause
7 // *****************************************************************************
8 // @HEADER
9 
10 #ifndef MUELU_VECTORDROPPINGCLASSICAL_DECL_HPP
11 #define MUELU_VECTORDROPPINGCLASSICAL_DECL_HPP
12 
16 #include "MueLu_CutDrop.hpp"
17 #include "MueLu_DroppingCommon.hpp"
20 #include "MueLu_Utilities.hpp"
21 
22 namespace MueLu {
23 
24 template <class Scalar, class LocalOrdinal, class GlobalOrdinal, class Node, Misc::StrengthMeasure SoC>
25 class VectorDroppingClassical : public VectorDroppingBase<Scalar, LocalOrdinal, GlobalOrdinal, Node> {
26  public:
30  using local_matrix_type = typename crs_matrix_type::local_matrix_type;
31  using local_graph_type = typename GraphType::local_graph_type;
32  using rowptr_type = typename local_graph_type::row_map_type::non_const_type;
33  using device_type = typename Node::device_type;
34  using memory_space = typename device_type::memory_space;
35  using results_view = Kokkos::View<DecisionType*, memory_space>;
39  using nnz_count_type = Kokkos::pair<LocalOrdinal, LocalOrdinal>;
40  using block_indices_view_type = typename Kokkos::View<LocalOrdinal*, typename Node::device_type>;
41 
43  matrix_type& mergedA,
44  LocalOrdinal blkPartSize,
45  block_indices_view_type& rowTranslation,
46  block_indices_view_type& colTranslation,
47  results_view& results,
48  rowptr_type& filtered_rowptr,
49  rowptr_type& graph_rowptr,
50  nnz_count_type& nnz,
51  boundary_nodes_type& boundaryNodes,
52  const std::string& droppingMethod,
53  const magnitudeType threshold,
54  const bool aggregationMayCreateDirichlet,
55  const bool symmetrizeDroppedGraph,
56  const bool useBlocking,
57  Level& level,
58  const Factory& factory);
59 };
60 
61 } // namespace MueLu
62 #endif
MueLu::DefaultLocalOrdinal LocalOrdinal
typename device_type::memory_space memory_space
Kokkos::View< DecisionType *, memory_space > results_view
typename Node::device_type device_type
typename GraphType::local_graph_type local_graph_type
typename Teuchos::ScalarTraits< Scalar >::magnitudeType magnitudeType
Class that holds all level-specific information.
Definition: MueLu_Level.hpp:63
static void runDroppingFunctors_on_A(matrix_type &A, matrix_type &mergedA, LocalOrdinal blkPartSize, block_indices_view_type &rowTranslation, block_indices_view_type &colTranslation, results_view &results, rowptr_type &filtered_rowptr, rowptr_type &graph_rowptr, nnz_count_type &nnz, boundary_nodes_type &boundaryNodes, const std::string &droppingMethod, const magnitudeType threshold, const bool aggregationMayCreateDirichlet, const bool symmetrizeDroppedGraph, const bool useBlocking, Level &level, const Factory &factory)
typename local_graph_type::row_map_type::non_const_type rowptr_type
Kokkos::pair< LocalOrdinal, LocalOrdinal > nnz_count_type
typename crs_matrix_type::local_matrix_type local_matrix_type
typename MueLu::LWGraph_kokkos< LocalOrdinal, GlobalOrdinal, Node >::boundary_nodes_type boundary_nodes_type
typename Kokkos::View< LocalOrdinal *, typename Node::device_type > block_indices_view_type