monolish  0.17.3-dev.23
MONOlithic LInear equation Solvers for Highly-parallel architecture
monolish_tensor_crs_vml.hpp
Go to the documentation of this file.
1 // this code is generated by gen_tensor_crs_vml.sh
2 #pragma once
3 
4 #include "../common/monolish_common.hpp"
5 
6 namespace monolish {
11 namespace vml {
12 
140 void add(const tensor::tensor_CRS<double> &A, const double alpha,
142 void add(const tensor::tensor_CRS<float> &A, const float alpha,
164 void sub(const tensor::tensor_CRS<double> &A, const double alpha,
166 void sub(const tensor::tensor_CRS<float> &A, const float alpha,
190 void mul(const tensor::tensor_CRS<double> &A, const double alpha,
192 void mul(const tensor::tensor_CRS<float> &A, const float alpha,
214 void div(const tensor::tensor_CRS<double> &A, const double alpha,
216 void div(const tensor::tensor_CRS<float> &A, const float alpha,
262 void pow(const tensor::tensor_CRS<double> &A, const double alpha,
264 void pow(const tensor::tensor_CRS<float> &A, const float alpha,
580 void max(const tensor::tensor_CRS<double> &A, const double alpha,
582 void max(const tensor::tensor_CRS<float> &A, const float alpha,
606 void min(const tensor::tensor_CRS<double> &A, const double alpha,
608 void min(const tensor::tensor_CRS<float> &A, const float alpha,
628 [[nodiscard]] double max(const tensor::tensor_CRS<double> &C);
629 [[nodiscard]] float max(const tensor::tensor_CRS<float> &C);
648 [[nodiscard]] double min(const tensor::tensor_CRS<double> &C);
649 [[nodiscard]] float min(const tensor::tensor_CRS<float> &C);
670 void alo(const tensor::tensor_CRS<double> &A, const double alpha,
671  const double beta, tensor::tensor_CRS<double> &C);
672 void alo(const tensor::tensor_CRS<float> &A, const float alpha,
673  const float beta, tensor::tensor_CRS<float> &C);
697 } // namespace vml
698 } // namespace monolish
void add(const matrix::CRS< double > &A, const matrix::CRS< double > &B, matrix::CRS< double > &C)
element by element addition CRS matrix A and CRS matrix B.
void asin(const matrix::CRS< double > &A, matrix::CRS< double > &C)
asin to CRS matrix elements (C[0:nnz] = asin(A[0:nnz]))
void asinh(const matrix::CRS< double > &A, matrix::CRS< double > &C)
asinh to CRS matrix elements (C[0:nnz] = asinh(A[0:nnz]))
void atan(const matrix::CRS< double > &A, matrix::CRS< double > &C)
atan to CRS matrix elements (C[0:nnz] = atan(A[0:nnz]))
void atanh(const matrix::CRS< double > &A, matrix::CRS< double > &C)
atanh to CRS matrix elements (C[0:nnz] = atanh(A[0:nnz]))
void ceil(const matrix::CRS< double > &A, matrix::CRS< double > &C)
ceil to CRS matrix elements (C[0:nnz] = ceil(A[0:nnz]))
void max(const matrix::CRS< double > &A, const matrix::CRS< double > &B, matrix::CRS< double > &C)
Create a new CRS matrix with greatest elements of two matrices (C[0:nnz] = max(A[0:nnz],...
void min(const matrix::CRS< double > &A, const matrix::CRS< double > &B, matrix::CRS< double > &C)
Create a new CRS matrix with smallest elements of two matrices (C[0:nnz] = min(A[0:nnz],...
void div(const matrix::CRS< double > &A, const matrix::CRS< double > &B, matrix::CRS< double > &C)
element by element division CRS matrix A and CRS matrix B.
void floor(const matrix::CRS< double > &A, matrix::CRS< double > &C)
floor to CRS matrix elements (C[0:nnz] = floor(A[0:nnz]))
void mul(const matrix::CRS< double > &A, const matrix::CRS< double > &B, matrix::CRS< double > &C)
element by element multiplication CRS matrix A and CRS matrix B.
void pow(const matrix::CRS< double > &A, const matrix::CRS< double > &B, matrix::CRS< double > &C)
power to CRS matrix elements (C[0:N] = pow(A[0:N], B[0:N]))
void reciprocal(const matrix::CRS< double > &A, matrix::CRS< double > &C)
reciprocal to CRS matrix elements (C[0:nnz] = 1 / A[0:nnz])
void sign(const matrix::CRS< double > &A, matrix::CRS< double > &C)
sign to CRS matrix elements (C[0:nnz] = sign(A[0:nnz]))
void sin(const matrix::CRS< double > &A, matrix::CRS< double > &C)
sin to CRS matrix elements (C[0:nnz] = sin(A[0:nnz]))
void sinh(const matrix::CRS< double > &A, matrix::CRS< double > &C)
sinh to CRS matrix elements (C[0:nnz] = sinh(A[0:nnz]))
void sqrt(const matrix::CRS< double > &A, matrix::CRS< double > &C)
sqrt to CRS matrix elements (C[0:nnz] = sqrt(A[0:nnz]))
void sub(const matrix::CRS< double > &A, const matrix::CRS< double > &B, matrix::CRS< double > &C)
element by element subtract CRS matrix A and CRS matrix B.
void tan(const matrix::CRS< double > &A, matrix::CRS< double > &C)
tan to CRS matrix elements (C[0:nnz] = tan(A[0:nnz]))
void tanh(const matrix::CRS< double > &A, matrix::CRS< double > &C)
tanh to CRS matrix elements (C[0:nnz] = tanh(A[0:nnz]))
void alo(const matrix::CRS< double > &A, const double alpha, const double beta, matrix::CRS< double > &C)
Asymmetric linear operation to CRS matrix elements (C[0:nnz] = alpha max(A[0:nnz],...
monolish namespaces