monolish  0.17.3-dev.23
MONOlithic LInear equation Solvers for Highly-parallel architecture
monolish_view_tensor_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_tensor_Dense {
51 private:
52  TYPE &target;
53  Float *target_data;
54  size_t first;
55  size_t last;
56  size_t range;
57 
58  std::vector<size_t> shape;
59 
60 public:
71  view_tensor_Dense(vector<Float> &x, const size_t start,
72  const std::vector<size_t> &shape_)
73  : target(x) {
74  first = start;
75  shape = shape_;
76  range = calc_range();
77  last = start + range;
78  target_data = x.data();
79  }
80 
91  view_tensor_Dense(matrix::Dense<Float> &A, const size_t start,
92  const std::vector<size_t> &shape_)
93  : target(A) {
94  first = start;
95  shape = shape_;
96  range = calc_range();
97  last = start + range;
98  target_data = A.data();
99  }
100 
112  const std::vector<size_t> &shape_)
113  : target(A) {
114  first = start;
115  shape = shape_;
116  range = calc_range();
117  last = start + range;
118  target_data = A.data();
119  }
120 
132  const size_t start, const std::vector<size_t> &shape_)
133  : target(x) {
134  first = x.get_first() + start;
135  shape = shape_;
136  range = calc_range();
137  last = first + range;
138  target_data = x.data();
139  }
140 
153  const size_t start, const std::vector<size_t> &shape_)
154  : target(x) {
155  first = x.get_first() + start;
156  shape = shape_;
157  range = calc_range();
158  last = first + range;
159  target_data = x.data();
160  }
161 
174  const size_t start, const std::vector<size_t> &shape_)
175  : target(x) {
176  first = x.get_first() + start;
177  shape = shape_;
178  range = calc_range();
179  last = first + range;
180  target_data = x.data();
181  }
182 
190  [[nodiscard]] std::string type() const {
191  return "view_tensor_Dense(" + target.type() + ")";
192  }
193 
194  // communication
195  // ///////////////////////////////////////////////////////////////////////////
203  void send() const { target.send(); };
204 
212  void recv() { target.recv(); };
213 
220  [[nodiscard]] size_t calc_range() const {
221  size_t N = 1;
222  for (auto n : shape) {
223  N *= n;
224  }
225  return N;
226  };
227 
235  [[nodiscard]] std::vector<size_t> get_shape() const { return shape; }
236 
244  [[nodiscard]] std::shared_ptr<Float> get_val() { return target.get_val(); }
245 
252  [[nodiscard]] size_t size() const { return range; }
253 
260  [[nodiscard]] size_t get_nnz() const { return range; }
261 
268  [[nodiscard]] size_t get_first() const { return first; }
269 
276  [[nodiscard]] size_t get_last() const { return last; }
277 
284  [[nodiscard]] size_t get_offset() const { return first; }
285 
286  [[nodiscard]] std::shared_ptr<Float> get_val() const { return target.val; }
287 
288  [[nodiscard]] size_t get_alloc_nnz() const { return target.get_alloc_nnz(); }
289 
295  void set_first(size_t i) { first = i; }
296 
302  void set_last(size_t i) {
303  assert(first + i <= target.get_nnz());
304  last = i;
305  }
306 
316  [[nodiscard]] Float at(const size_t pos) const {
317  return target.at(first + pos);
318  }
319 
329  [[nodiscard]] Float at(const std::vector<size_t> &pos) const {
330  return target.at(first + get_index(pos));
331  }
332 
342  template <typename... Args>
343  [[nodiscard]] Float at(const std::vector<size_t> &pos, const size_t dim,
344  const Args... args) const {
345  std::vector<size_t> pos_copy = pos;
346  pos_copy.push_back(dim);
347  return this->at(pos_copy, args...);
348  };
349 
359  template <typename... Args>
360  [[nodiscard]] Float at(const size_t dim, const Args... args) const {
361  std::vector<size_t> pos(1);
362  pos[0] = dim;
363  return this->at(pos, args...);
364  };
365 
375  [[nodiscard]] Float at(const size_t pos) {
376  return static_cast<const view_tensor_Dense<TYPE, Float> *>(this)->at(pos);
377  };
378 
388  [[nodiscard]] Float at(const std::vector<size_t> &pos) {
389  return static_cast<const view_tensor_Dense<TYPE, Float> *>(this)->at(pos);
390  };
391 
401  template <typename... Args>
402  [[nodiscard]] Float at(const std::vector<size_t> &pos, const Args... args) {
403  return static_cast<const view_tensor_Dense *>(this)->at(pos, args...);
404  };
405 
415  template <typename... Args>
416  [[nodiscard]] Float at(const size_t dim, const Args... args) {
417  return static_cast<const view_tensor_Dense *>(this)->at(dim, args...);
418  };
419 
429  void insert(const size_t i, const Float Val) {
430  target.insert(first + i, Val);
431  return;
432  };
433 
443  void insert(const std::vector<size_t> &pos, const Float Val) {
444  target.insert(first + get_index(pos), Val);
445  return;
446  };
447 
456  [[nodiscard]] size_t get_device_mem_stat() const {
457  return target.get_device_mem_stat();
458  }
459 
464  [[nodiscard]] std::shared_ptr<bool> get_gpu_status() const {
465  return target.get_gpu_status();
466  }
467 
475  [[nodiscard]] Float *data() const { return target_data; }
476 
483  [[nodiscard]] Float *data() { return target_data; }
484 
491  [[nodiscard]] TYPE &get_target() const { return target; }
492 
499  [[nodiscard]] TYPE &get_target() { return target; }
500 
507  [[nodiscard]] Float *begin() const { return target_data + get_offset(); }
508 
515  [[nodiscard]] Float *begin() { return target_data + get_offset(); }
516 
523  [[nodiscard]] Float *end() const { return target_data + range; }
524 
531  [[nodiscard]] Float *end() { return target_data + range; }
532 
541  void print_all(bool force_cpu = false) const;
542 
553  void resize(std::vector<size_t> &shape_) {
554  shape = shape_;
555  range = calc_range();
556  assert(first + range <= target.get_nnz());
557  last = first + range;
558  }
559 
568  void fill(Float value);
569 
583 
596  void operator=(const view_tensor_Dense<vector<Float>, Float> &tens);
597 
611 
624  void
626 
636  [[nodiscard]] Float &operator[](const size_t i) {
637  if (target.get_device_mem_stat()) {
638  throw std::runtime_error("Error, GPU vector cant use operator[]");
639  }
640  return target_data[i + first];
641  }
642 
652  size_t get_index(const std::vector<size_t> &pos) const {
653  if (pos.size() != this->shape.size()) {
654  throw std::runtime_error("pos size should be same with the shape");
655  }
656  size_t ind = 0;
657  for (auto i = 0; i < pos.size(); ++i) {
658  ind *= this->shape[i];
659  ind += pos[i];
660  }
661  return ind;
662  }
663 
673  std::vector<size_t> get_index(const size_t pos) const {
674  std::vector<size_t> ind(this->shape.size(), 0);
675  auto pos_copy = pos;
676  for (int i = (int)this->shape.size() - 1; i >= 0; --i) {
677  ind[i] = pos_copy % this->shape[i];
678  pos_copy /= this->shape[i];
679  }
680  return ind;
681  }
682 
691  void diag_add(const Float alpha);
692 
701  void diag_sub(const Float alpha);
702 
711  void diag_mul(const Float alpha);
712 
721  void diag_div(const Float alpha);
722 
731  void diag_add(const vector<Float> &vec);
732  void diag_add(const view1D<vector<Float>, Float> &vec);
733  void diag_add(const view1D<matrix::Dense<Float>, Float> &vec);
734  void diag_add(const view1D<tensor::tensor_Dense<Float>, Float> &vec);
735 
744  void diag_sub(const vector<Float> &vec);
745  void diag_sub(const view1D<vector<Float>, Float> &vec);
746  void diag_sub(const view1D<matrix::Dense<Float>, Float> &vec);
747  void diag_sub(const view1D<tensor::tensor_Dense<Float>, Float> &vec);
748 
757  void diag_mul(const vector<Float> &vec);
758  void diag_mul(const view1D<vector<Float>, Float> &vec);
759  void diag_mul(const view1D<matrix::Dense<Float>, Float> &vec);
760  void diag_mul(const view1D<tensor::tensor_Dense<Float>, Float> &vec);
761 
770  void diag_div(const vector<Float> &vec);
771  void diag_div(const view1D<vector<Float>, Float> &vec);
772  void diag_div(const view1D<matrix::Dense<Float>, Float> &vec);
773  void diag_div(const view1D<tensor::tensor_Dense<Float>, Float> &vec);
774 };
777 } // 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
view_tensor_Dense(view_tensor_Dense< tensor::tensor_Dense< Float >, Float > &x, const size_t start, const std::vector< size_t > &shape_)
create view_tensor_Dense from monolish::tensor::tensor_Dense(start:start+range)
void diag_div(const view1D< vector< Float >, Float > &vec)
Float at(const std::vector< size_t > &pos, const Args... args)
get element A[pos[0]][pos[1]]... (onlu CPU)
TYPE & get_target()
returns a reference of the target
size_t get_device_mem_stat() const
true: sended, false: not send
size_t get_last() const
get end position
void diag_add(const view1D< vector< Float >, Float > &vec)
view_tensor_Dense(view_tensor_Dense< vector< Float >, Float > &x, const size_t start, const std::vector< size_t > &shape_)
create view_tensor_Dense from monolish::vector(start:start+range)
view_tensor_Dense(view_tensor_Dense< matrix::Dense< Float >, Float > &x, const size_t start, const std::vector< size_t > &shape_)
create view_tensor_Dense from monolish::matrix::Dense(start:start+range)
size_t get_offset() const
get first position (same as get_first())
void diag_div(const view1D< tensor::tensor_Dense< Float >, Float > &vec)
void diag_sub(const view1D< matrix::Dense< Float >, Float > &vec)
std::shared_ptr< bool > get_gpu_status() const
gpu status shared pointer
void set_last(size_t i)
change last position
void diag_mul(const Float alpha)
Scalar and diag. vector of Dense format matrix mul.
Float * end() const
returns a end iterator
Float at(const std::vector< size_t > &pos) const
get element A[pos[0]][pos[1]]...
view_tensor_Dense(tensor::tensor_Dense< Float > &A, const size_t start, const std::vector< size_t > &shape_)
create view_tensor_Dense from Dense tensor(start:start+range)
void diag_mul(const view1D< matrix::Dense< Float >, Float > &vec)
void diag_div(const vector< Float > &vec)
Vector and diag. vector of Dense format matrix div.
void operator=(const view_tensor_Dense< matrix::Dense< Float >, Float > &tens)
tensor copy
void diag_div(const view1D< matrix::Dense< Float >, Float > &vec)
void diag_add(const view1D< tensor::tensor_Dense< Float >, Float > &vec)
void diag_add(const Float alpha)
Scalar and diag. vector of Dense format matrix add.
std::vector< size_t > get_shape() const
get shape
Float * begin() const
returns begin iterator (include offset)
view_tensor_Dense(matrix::Dense< Float > &A, const size_t start, const std::vector< size_t > &shape_)
create view_tensor_Dense from Dense matrix(start:start+range)
Float * begin()
returns begin iterator (include offset)
Float at(const size_t pos)
get element A[index] (only CPU)
void diag_add(const view1D< matrix::Dense< Float >, Float > &vec)
void diag_mul(const view1D< tensor::tensor_Dense< Float >, Float > &vec)
void set_first(size_t i)
change first position
void diag_sub(const vector< Float > &vec)
Vector and diag. vector of Dense format matrix sub.
Float at(const size_t dim, const Args... args) const
get element A[pos[0]][pos[1]]...
void resize(std::vector< size_t > &shape_)
change last postion
std::shared_ptr< Float > get_val()
get shared_ptr of val
Float * data()
returns a direct pointer to the vector (dont include offset)
size_t size() const
get view_tensor_Dense size (range)
size_t get_nnz() const
get view_tensor_Dense size (same as size())
void diag_sub(const view1D< vector< Float >, Float > &vec)
void insert(const size_t i, const Float Val)
set element A[index]...
view_tensor_Dense(vector< Float > &x, const size_t start, const std::vector< size_t > &shape_)
create view_tensor_Dense from vector(start:start+range)
void operator=(const view_tensor_Dense< tensor::tensor_Dense< Float >, Float > &tens)
tensor copy
void diag_mul(const vector< Float > &vec)
Vector and diag. vector of Dense format matrix mul.
TYPE & get_target() const
returns a reference of the target
std::string type() const
get format name "view_tensor_Dense"
size_t get_first() const
get first position
std::shared_ptr< Float > get_val() const
void print_all(bool force_cpu=false) const
print all elements to standart I/O
Float at(const size_t dim, const Args... args)
get element A[pos[0]][pos[1]]... (onlu CPU)
size_t get_index(const std::vector< size_t > &pos) const
get aligned index from vector index (A[pos] = A[ind[0]][ind[1]]...)
Float & operator[](const size_t i)
reference to the element at position
void send() const
send data to GPU
void diag_div(const Float alpha)
Scalar and diag. vector of Dense format matrix div.
void recv()
recv data from GPU, and free data on GPU
Float * end()
returns a end iterator
std::vector< size_t > get_index(const size_t pos) const
get vector index from aligned index (A[pos[0]][pos[1]]... = A[ind])
void fill(Float value)
fill vector elements with a scalar value
void operator=(const tensor::tensor_Dense< Float > &tens)
tensor copy
void diag_mul(const view1D< vector< Float >, Float > &vec)
Float at(const std::vector< size_t > &pos)
get element A[pos[0]][pos[1]]...
void operator=(const view_tensor_Dense< vector< Float >, Float > &tens)
tensor copy
Float at(const size_t pos) const
get element A[index]
void diag_sub(const view1D< tensor::tensor_Dense< Float >, Float > &vec)
size_t calc_range() const
calculate view_tensor_Dense size from shape
void diag_sub(const Float alpha)
Scalar and diag. vector of Dense format matrix sub.
void insert(const std::vector< size_t > &pos, const Float Val)
set element A[pos[0]][pos[1]]...
Float * data() const
returns a direct pointer to the original vector (dont include offset)
Float at(const std::vector< size_t > &pos, const size_t dim, const Args... args) const
get element A[pos[0]][pos[1]]...
void diag_add(const vector< Float > &vec)
Vector and diag. vector of Dense format matrix add.
monolish namespaces