/usr/include/trilinos/KokkosKernels_GaussSeidelHandle.hpp is in libtrilinos-kokkos-kernels-dev 12.12.1-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 | /*
//@HEADER
// ************************************************************************
//
// KokkosKernels 0.9: Linear Algebra and Graph Kernels
// Copyright 2017 Sandia Corporation
//
// Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
// the U.S. Government retains certain rights in this software.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// 1. Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
//
// 2. Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
//
// 3. Neither the name of the Corporation nor the names of the
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY SANDIA CORPORATION "AS IS" AND ANY
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
// PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SANDIA CORPORATION OR THE
// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
// LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
// Questions? Contact Siva Rajamanickam (srajama@sandia.gov)
//
// ************************************************************************
//@HEADER
*/
#include <Kokkos_MemoryTraits.hpp>
#include <Kokkos_Core.hpp>
#include <KokkosKernels_Utils.hpp>
#ifndef _GAUSSSEIDELHANDLE_HPP
#define _GAUSSSEIDELHANDLE_HPP
//#define VERBOSE
namespace KokkosKernels{
namespace Experimental{
namespace Graph{
enum GSAlgorithm{GS_DEFAULT, GS_PERMUTED, GS_TEAM};
template <class lno_row_view_t_,
class lno_nnz_view_t_,
class scalar_nnz_view_t_,
class ExecutionSpace,
class TemporaryMemorySpace,
class PersistentMemorySpace>
class GaussSeidelHandle{
public:
typedef ExecutionSpace HandleExecSpace;
typedef TemporaryMemorySpace HandleTempMemorySpace;
typedef PersistentMemorySpace HandlePersistentMemorySpace;
typedef lno_row_view_t_ in_lno_row_view_t;
typedef lno_nnz_view_t_ in_lno_nnz_view_t;
typedef scalar_nnz_view_t_ in_scalar_nnz_view_t;
//typedef typename in_lno_row_view_t::non_const_value_type row_lno_t;
typedef typename in_lno_row_view_t::non_const_value_type size_type;
//typedef typename in_lno_row_view_t::HostMirror row_lno_host_view_t; //Host view type
typedef typename in_lno_nnz_view_t::non_const_value_type nnz_lno_t;
//typedef typename in_lno_nnz_view_t::HostMirror nnz_lno_host_view_t; //Host view type
typedef typename in_scalar_nnz_view_t::non_const_value_type nnz_scalar_t;
//typedef typename in_scalar_nnz_view_t::HostMirror nnz_scalar_view_t; //Host view type
typedef typename in_lno_row_view_t::const_type const_lno_row_view_t;
typedef typename in_lno_row_view_t::non_const_type non_const_lno_row_view_t;
typedef typename in_lno_nnz_view_t::const_type const_lno_nnz_view_t;
typedef typename in_lno_nnz_view_t::non_const_type non_const_lno_nnz_view_t;
typedef typename in_scalar_nnz_view_t::const_type const_scalar_nnz_view_t;
typedef typename in_scalar_nnz_view_t::non_const_type non_const_scalar_nnz_view_t;
typedef typename Kokkos::View<size_type *, HandleTempMemorySpace> row_lno_temp_work_view_t;
typedef typename Kokkos::View<size_type *, HandlePersistentMemorySpace> row_lno_persistent_work_view_t;
typedef typename row_lno_persistent_work_view_t::HostMirror row_lno_persistent_work_host_view_t; //Host view type
typedef typename Kokkos::View<nnz_scalar_t *, HandleTempMemorySpace> scalar_temp_work_view_t;
typedef typename Kokkos::View<nnz_scalar_t *, HandlePersistentMemorySpace> scalar_persistent_work_view_t;
typedef typename scalar_persistent_work_view_t::HostMirror scalar_persistent_work_host_view_t; //Host view type
typedef typename Kokkos::View<nnz_lno_t *, HandleTempMemorySpace> nnz_lno_temp_work_view_t;
typedef typename Kokkos::View<nnz_lno_t *, HandlePersistentMemorySpace> nnz_lno_persistent_work_view_t;
typedef typename nnz_lno_persistent_work_view_t::HostMirror nnz_lno_persistent_work_host_view_t; //Host view type
private:
bool owner_of_coloring;
GSAlgorithm algorithm_type;
nnz_lno_persistent_work_host_view_t color_set_xadj;
nnz_lno_persistent_work_view_t color_sets;
nnz_lno_t numColors;
row_lno_persistent_work_view_t permuted_xadj;
nnz_lno_persistent_work_view_t permuted_adj;
scalar_persistent_work_view_t permuted_adj_vals;
nnz_lno_persistent_work_view_t old_to_new_map;
bool called_symbolic;
bool called_numeric;
scalar_persistent_work_view_t permuted_y_vector;
scalar_persistent_work_view_t permuted_x_vector;
int suggested_vector_size;
int suggested_team_size;
scalar_persistent_work_view_t permuted_diagonals;
public:
/**
* \brief Default constructor.
*/
GaussSeidelHandle(GSAlgorithm gs = GS_DEFAULT):
owner_of_coloring(false),
algorithm_type(gs),
color_set_xadj(), color_sets(), numColors(0),
permuted_xadj(), permuted_adj(), permuted_adj_vals(), old_to_new_map(),
called_symbolic(false), called_numeric(false), permuted_y_vector(), permuted_x_vector(),
suggested_vector_size(0), suggested_team_size(0), permuted_diagonals()
{
if (gs == GS_DEFAULT){
this->choose_default_algorithm();
}
}
/** \brief Chooses best algorithm based on the execution space. COLORING_EB if cuda, COLORING_VB otherwise.
*/
void choose_default_algorithm(){
#if defined( KOKKOS_HAVE_SERIAL )
if (Kokkos::Impl::is_same< Kokkos::Serial , ExecutionSpace >::value){
this->algorithm_type = GS_PERMUTED;
#ifdef VERBOSE
std::cout << "Serial Execution Space, Default Algorithm: GS_PERMUTED" << std::endl;
#endif
}
#endif
#if defined( KOKKOS_HAVE_PTHREAD )
if (Kokkos::Impl::is_same< Kokkos::Threads , ExecutionSpace >::value){
this->algorithm_type = GS_PERMUTED;
#ifdef VERBOSE
std::cout << "PTHREAD Execution Space, Default Algorithm: GS_PERMUTED" << std::endl;
#endif
}
#endif
#if defined( KOKKOS_HAVE_OPENMP )
if (Kokkos::Impl::is_same< Kokkos::OpenMP, ExecutionSpace >::value){
this->algorithm_type = GS_PERMUTED;
#ifdef VERBOSE
std::cout << "OpenMP Execution Space, Default Algorithm: GS_PERMUTED" << std::endl;
#endif
}
#endif
#if defined( KOKKOS_HAVE_CUDA )
if (Kokkos::Impl::is_same<Kokkos::Cuda, ExecutionSpace >::value){
this->algorithm_type = GS_TEAM;
#ifdef VERBOSE
std::cout << "Qthread Execution Space, Default Algorithm: GS_TEAM" << std::endl;
#endif
}
#endif
#if defined( KOKKOS_HAVE_QTHREAD)
if (Kokkos::Impl::is_same< Kokkos::Qthread, ExecutionSpace >::value){
this->algorithm_type = GS_PERMUTED;
#ifdef VERBOSE
std::cout << "Qthread Execution Space, Default Algorithm: GS_PERMUTED" << std::endl;
#endif
}
#endif
}
virtual ~GaussSeidelHandle(){};
//getters
GSAlgorithm get_algorithm_type() const {return this->algorithm_type;}
bool is_owner_of_coloring() const {return this->owner_of_coloring;}
nnz_lno_persistent_work_host_view_t get_color_xadj() {
return this->color_set_xadj;
}
nnz_lno_persistent_work_view_t get_color_adj() {
return this->color_sets;
}
nnz_lno_t get_num_colors() {
return this->numColors;
}
row_lno_persistent_work_view_t get_new_xadj() {
return this->permuted_xadj;
}
nnz_lno_persistent_work_view_t get_new_adj() {
return this->permuted_adj;
}
scalar_persistent_work_view_t get_new_adj_val() {
return this->permuted_adj_vals;
}
nnz_lno_persistent_work_view_t get_old_to_new_map() {
return this->old_to_new_map;
}
bool is_symbolic_called(){return this->called_symbolic;}
bool is_numeric_called(){return this->called_numeric;}
//setters
void set_algorithm_type(const GSAlgorithm &sgs_algo){this->algorithm_type = sgs_algo;}
void set_owner_of_coloring(bool owner = true){this->owner_of_coloring = owner;}
void set_call_symbolic(bool call = true){this->called_symbolic = call;}
void set_call_numeric(bool call = true){this->called_numeric = call;}
void set_color_set_xadj(const nnz_lno_persistent_work_host_view_t &color_set_xadj_) {
this->color_set_xadj = color_set_xadj_;
}
void set_color_set_adj(const nnz_lno_persistent_work_view_t &color_sets_) {
this->color_sets = color_sets_;
}
void set_num_colors(const nnz_lno_t &numColors_) {
this->numColors = numColors_;
}
void set_new_xadj(const row_lno_persistent_work_view_t &xadj_) {
this->permuted_xadj = xadj_;
}
void set_new_adj(const nnz_lno_persistent_work_view_t &adj_) {
this->permuted_adj = adj_;
}
void set_new_adj_val(const scalar_persistent_work_view_t &adj_vals_) {
this->permuted_adj_vals = adj_vals_;
}
void set_old_to_new_map(const nnz_lno_persistent_work_view_t &old_to_new_map_) {
this->old_to_new_map = old_to_new_map_;
}
void set_permuted_diagonals (const scalar_persistent_work_view_t permuted_diagonals_){
this->permuted_diagonals = permuted_diagonals_;
}
scalar_persistent_work_view_t get_permuted_diagonals (){
return this->permuted_diagonals;
}
void allocate_x_y_vectors(nnz_lno_t num_rows, nnz_lno_t num_cols){
if(permuted_y_vector.dimension_0() != size_t(num_rows)){
permuted_y_vector = scalar_persistent_work_view_t("PERMUTED Y VECTOR", num_rows);
}
if(permuted_x_vector.dimension_0() != size_t(num_cols)){
permuted_x_vector = scalar_persistent_work_view_t("PERMUTED X VECTOR", num_cols);
}
}
scalar_persistent_work_view_t get_permuted_y_vector (){return this->permuted_y_vector;}
scalar_persistent_work_view_t get_permuted_x_vector (){return this->permuted_x_vector;}
void vector_team_size(
int max_allowed_team_size,
int &suggested_vector_size_,
int &suggested_team_size_,
size_type nr, size_type nnz){
//suggested_team_size_ = this->suggested_team_size = 1;
//suggested_vector_size_=this->suggested_vector_size = 1;
//return;
if (this->suggested_team_size && this->suggested_vector_size) {
suggested_vector_size_ = this->suggested_vector_size;
suggested_team_size_ = this->suggested_team_size;
return;
}
else {
KokkosKernels::Experimental::Util::get_suggested_vector_team_size<size_type, ExecutionSpace>(
max_allowed_team_size, suggested_vector_size_, suggested_team_size_, nr, nnz);
this->suggested_team_size = suggested_vector_size_;
this->suggested_vector_size = suggested_vector_size_;
}
}
};
}
}
}
#endif
|