monolish  0.17.3-dev.23
MONOlithic LInear equation Solvers for Highly-parallel architecture
monolish_view_dense.hpp
Go to the documentation of this file.
1 #pragma once
2 #include "./monolish_logger.hpp"
3 #include <cassert>
4 #include <exception>
5 #include <fstream>
6 #include <iostream>
7 #include <iterator>
8 #include <memory>
9 #include <omp.h>
10 #include <stdexcept>
11 #include <string>
12 #include <vector>
13 
14 #if USE_SXAT
15 #undef _HAS_CPP17
16 #endif
17 #include <random>
18 #if USE_SXAT
19 #define _HAS_CPP17 1
20 #endif
21 
22 #if defined USE_MPI
23 #include <mpi.h>
24 #endif
25 
26 namespace monolish {
27 template <typename Float> class vector;
28 
29 namespace matrix {
30 template <typename Float> class Dense;
31 template <typename Float> class CRS;
32 template <typename Float> class LinearOperator;
33 } // namespace matrix
34 
35 namespace tensor {
36 template <typename Float> class tensor_Dense;
37 } // namespace tensor
38 
50 template <typename TYPE, typename Float> class view_Dense {
51 private:
52  TYPE &target;
53  Float *target_data;
54  size_t first;
55  size_t last;
56  size_t range;
57 
58  size_t rowN;
59  size_t colN;
60 
61 public:
73  view_Dense(vector<Float> &x, const size_t start, const size_t row,
74  const size_t col)
75  : target(x) {
76  first = start;
77  rowN = row;
78  colN = col;
79  range = rowN * colN;
80  last = start + range;
81  target_data = x.data();
82  }
83 
95  view_Dense(matrix::Dense<Float> &A, const size_t start, const size_t row,
96  const size_t col)
97  : target(A) {
98  first = start;
99  rowN = row;
100  colN = col;
101  range = rowN * colN;
102  last = start + range;
103  target_data = A.data();
104  }
105 
117  view_Dense(tensor::tensor_Dense<Float> &A, const size_t start,
118  const size_t row, const size_t col)
119  : target(A) {
120  first = start;
121  rowN = row;
122  colN = col;
123  range = rowN * colN;
124  last = start + range;
125  target_data = A.data();
126  }
127 
139  view_Dense(view_Dense<vector<Float>, Float> &x, const size_t start,
140  const size_t row, const size_t col)
141  : target(x) {
142  first = x.get_first() + start;
143  rowN = row;
144  colN = col;
145  range = rowN * colN;
146  last = first + range;
147  target_data = x.data();
148  }
149 
161  view_Dense(view_Dense<matrix::Dense<Float>, Float> &x, const size_t start,
162  const size_t row, const size_t col)
163  : target(x) {
164  first = x.get_first() + start;
165  rowN = row;
166  colN = col;
167  range = rowN * colN;
168  last = first + range;
169  target_data = x.data();
170  }
171 
185  const size_t start, const size_t row, const size_t col)
186  : target(x) {
187  first = x.get_first() + start;
188  rowN = row;
189  colN = col;
190  range = rowN * colN;
191  last = first + range;
192  target_data = x.data();
193  }
194 
195  // communication
196  // ///////////////////////////////////////////////////////////////////////////
204  void send() const { target.send(); };
205 
213  void recv() { target.recv(); };
214 
222  [[nodiscard]] size_t get_row() const { return rowN; }
223 
231  [[nodiscard]] size_t get_col() const { return colN; }
232 
240  [[nodiscard]] std::shared_ptr<Float> get_val() { return target.get_val(); }
241 
248  [[nodiscard]] size_t size() const { return range; }
249 
256  [[nodiscard]] size_t get_nnz() const { return range; }
257 
265  [[nodiscard]] size_t get_alloc_nnz() const { return target.get_alloc_nnz(); }
266 
273  [[nodiscard]] size_t get_first() const { return first; }
274 
281  [[nodiscard]] size_t get_last() const { return last; }
282 
289  [[nodiscard]] size_t get_offset() const { return first; }
290 
291  [[nodiscard]] std::shared_ptr<Float> get_val() const { return target.val; }
292 
298  void set_first(size_t i) { first = i; }
299 
305  void set_last(size_t i) {
306  assert(first + i <= target.get_nnz());
307  last = i;
308  }
309 
317  [[nodiscard]] std::string type() const {
318  return "view_Dense(" + target.type() + ")";
319  }
320 
330  [[nodiscard]] Float at(const size_t i) const { return target.at(first + i); }
331 
342  [[nodiscard]] Float at(const size_t i, const size_t j) const {
343  return target.at(first + i * get_col() + j);
344  }
345 
355  [[nodiscard]] Float at(const size_t i) {
356  return static_cast<const view_Dense<TYPE, Float> *>(this)->at(i);
357  };
358 
369  [[nodiscard]] Float at(const size_t i, const size_t j) {
370  return static_cast<const view_Dense<TYPE, Float> *>(this)->at(i, j);
371  };
372 
382  void insert(const size_t i, const Float Val) {
383  target.insert(first + i, Val);
384  return;
385  };
386 
397  void insert(const size_t i, const size_t j, const Float Val) {
398  target.insert(first + i * get_col() + j, Val);
399  return;
400  };
401 
410  [[nodiscard]] size_t get_device_mem_stat() const {
411  return target.get_device_mem_stat();
412  }
413 
421  [[nodiscard]] Float *data() const { return target_data; }
422 
429  [[nodiscard]] Float *data() { return target_data; }
430 
437  [[nodiscard]] TYPE &get_target() const { return target; }
438 
445  [[nodiscard]] TYPE &get_target() { return target; }
446 
453  [[nodiscard]] Float *begin() const { return target_data + get_offset(); }
454 
461  [[nodiscard]] Float *begin() { return target_data + get_offset(); }
462 
469  [[nodiscard]] Float *end() const { return target_data + range; }
470 
477  [[nodiscard]] Float *end() { return target_data + range; }
478 
487  void print_all(bool force_cpu = false) const;
488 
499  void resize(size_t row, size_t col) {
500  assert(first + row * col <= target.get_nnz());
501  rowN = row;
502  colN = col;
503  range = rowN * colN;
504  last = first + range;
505  }
506 
507  void move(const view_tensor_Dense<TYPE, Float> &view_tensor_dense);
508 
509  void move(const view_tensor_Dense<TYPE, Float> &view_tensor_dense, int rowN,
510  int colN);
511 
520  void fill(Float value);
521 
534  void operator=(const matrix::Dense<Float> &mat);
535 
548  void operator=(const view_Dense<vector<Float>, Float> &mat);
549 
562  void operator=(const view_Dense<matrix::Dense<Float>, Float> &mat);
563 
577 
587  [[nodiscard]] Float &operator[](const size_t i) {
588  if (target.get_device_mem_stat()) {
589  throw std::runtime_error("Error, GPU vector cant use operator[]");
590  }
591  return target_data[i + first];
592  }
593 
602  void diag_add(const Float alpha);
603 
612  void diag_sub(const Float alpha);
613 
622  void diag_mul(const Float alpha);
623 
632  void diag_div(const Float alpha);
633 
642  void diag_add(const vector<Float> &vec);
643  void diag_add(const view1D<vector<Float>, Float> &vec);
644  void diag_add(const view1D<matrix::Dense<Float>, Float> &vec);
645  void diag_add(const view1D<tensor::tensor_Dense<Float>, Float> &vec);
646 
655  void diag_sub(const vector<Float> &vec);
656  void diag_sub(const view1D<vector<Float>, Float> &vec);
657  void diag_sub(const view1D<matrix::Dense<Float>, Float> &vec);
658  void diag_sub(const view1D<tensor::tensor_Dense<Float>, Float> &vec);
659 
668  void diag_mul(const vector<Float> &vec);
669  void diag_mul(const view1D<vector<Float>, Float> &vec);
670  void diag_mul(const view1D<matrix::Dense<Float>, Float> &vec);
671  void diag_mul(const view1D<tensor::tensor_Dense<Float>, Float> &vec);
672 
681  void diag_div(const vector<Float> &vec);
682  void diag_div(const view1D<vector<Float>, Float> &vec);
683  void diag_div(const view1D<matrix::Dense<Float>, Float> &vec);
684  void diag_div(const view1D<tensor::tensor_Dense<Float>, Float> &vec);
685 };
688 } // namespace monolish
Dense format Matrix.
const Float * data() const
returns a direct pointer to the matrix
const Float * data() const
returns a direct pointer to the tensor
const Float * data() const
returns a direct pointer to the vector
size_t get_nnz() const
get view_Dense size (same as size())
void insert(const size_t i, const Float Val)
set element A[i/col][jcol]
void diag_mul(const Float alpha)
Scalar and diag. vector of Dense format matrix mul.
void diag_add(const vector< Float > &vec)
Vector and diag. vector of Dense format matrix add.
void operator=(const view_Dense< tensor::tensor_Dense< Float >, Float > &mat)
matrix copy
void diag_sub(const vector< Float > &vec)
Vector and diag. vector of Dense format matrix sub.
void move(const view_tensor_Dense< TYPE, Float > &view_tensor_dense)
void recv()
recv data from GPU, and free data on GPU
void send() const
send data to GPU
void diag_div(const view1D< vector< Float >, Float > &vec)
void diag_sub(const view1D< tensor::tensor_Dense< Float >, Float > &vec)
void diag_sub(const view1D< vector< Float >, Float > &vec)
Float at(const size_t i)
get element A[i/col][icol] (only CPU)
size_t get_last() const
get end position
void diag_add(const view1D< tensor::tensor_Dense< Float >, Float > &vec)
void fill(Float value)
fill vector elements with a scalar value
size_t get_row() const
get # of row
void diag_div(const Float alpha)
Scalar and diag. vector of Dense format matrix div.
Float * data()
returns a direct pointer to the vector (dont include offset)
Float * end() const
returns a end iterator
Float at(const size_t i, const size_t j)
get element A[i][j] (only CPU)
void move(const view_tensor_Dense< TYPE, Float > &view_tensor_dense, int rowN, int colN)
std::shared_ptr< Float > get_val()
get shared_ptr of val
void diag_div(const view1D< tensor::tensor_Dense< Float >, Float > &vec)
size_t get_device_mem_stat() const
true: sended, false: not send
void operator=(const view_Dense< vector< Float >, Float > &mat)
matrix copy
void diag_sub(const view1D< matrix::Dense< Float >, Float > &vec)
void diag_sub(const Float alpha)
Scalar and diag. vector of Dense format matrix sub.
size_t get_first() const
get first position
void diag_mul(const view1D< matrix::Dense< Float >, Float > &vec)
void diag_mul(const view1D< vector< Float >, Float > &vec)
void set_last(size_t i)
change last position
Float * begin() const
returns begin iterator (include offset)
void set_first(size_t i)
change first position
void diag_div(const vector< Float > &vec)
Vector and diag. vector of Dense format matrix div.
Float at(const size_t i, const size_t j) const
get element A[i][j]
TYPE & get_target()
returns a reference of the target
std::shared_ptr< Float > get_val() const
size_t size() const
get view_Dense size (range)
void operator=(const matrix::Dense< Float > &mat)
matrix copy
Float * data() const
returns a direct pointer to the original vector (dont include offset)
std::string type() const
get format name "view_Dense"
Float * end()
returns a end iterator
size_t get_alloc_nnz() const
get # of alloced non-zeros
size_t get_col() const
get # of col
TYPE & get_target() const
returns a reference of the target
view_Dense(matrix::Dense< Float > &A, const size_t start, const size_t row, const size_t col)
create view_Dense from Dense matrix(start:start+range)
void diag_mul(const view1D< tensor::tensor_Dense< Float >, Float > &vec)
void diag_add(const view1D< vector< Float >, Float > &vec)
void diag_div(const view1D< matrix::Dense< Float >, Float > &vec)
void diag_add(const Float alpha)
Scalar and diag. vector of Dense format matrix add.
view_Dense(vector< Float > &x, const size_t start, const size_t row, const size_t col)
create view_Dense from vector(start:start+range)
view_Dense(view_Dense< matrix::Dense< Float >, Float > &x, const size_t start, const size_t row, const size_t col)
create view_Dense from monolish::matrix::Dense(start:start+range)
void insert(const size_t i, const size_t j, const Float Val)
set element A[i][j]
size_t get_offset() const
get first position (same as get_first())
Float & operator[](const size_t i)
reference to the element at position
void resize(size_t row, size_t col)
change last postion
Float * begin()
returns begin iterator (include offset)
void diag_mul(const vector< Float > &vec)
Vector and diag. vector of Dense format matrix mul.
view_Dense(tensor::tensor_Dense< Float > &A, const size_t start, const size_t row, const size_t col)
create view_Dense from Dense tensor(start:start+range)
view_Dense(view_Dense< tensor::tensor_Dense< Float >, Float > &x, const size_t start, const size_t row, const size_t col)
create view_Dense from monolish::tensor::tensor_Dense(start:start+range)
view_Dense(view_Dense< vector< Float >, Float > &x, const size_t start, const size_t row, const size_t col)
create view_Dense from monolish::vector(start:start+range)
void print_all(bool force_cpu=false) const
print all elements to standart I/O
Float at(const size_t i) const
get element A[i/col][jcol]
void operator=(const view_Dense< matrix::Dense< Float >, Float > &mat)
matrix copy
void diag_add(const view1D< matrix::Dense< Float >, Float > &vec)
monolish namespaces