monolish
0.14.0
MONOlithic LIner equation Solvers for Highly-parallel architecture
|
#include "../common/monolish_common.hpp"
Go to the source code of this file.
Namespaces | |
monolish | |
monolish::vml | |
Vector and Matrix element-wise math library. | |
Functions | |
void | monolish::vml::add (const matrix::Dense< double > &A, const double alpha, matrix::Dense< double > &C) |
element by element addition Dense matrix A and Dense matrix B. More... | |
void | monolish::vml::add (const matrix::Dense< double > &A, const matrix::Dense< double > &B, matrix::Dense< double > &C) |
element by element addition Dense matrix A and Dense matrix B. More... | |
void | monolish::vml::add (const matrix::Dense< float > &A, const float alpha, matrix::Dense< float > &C) |
void | monolish::vml::add (const matrix::Dense< float > &A, const matrix::Dense< float > &B, matrix::Dense< float > &C) |
void | monolish::vml::asin (const matrix::Dense< double > &A, matrix::Dense< double > &C) |
asin to Dense matrix elements (C[0:nnz] = asin(A[0:nnz])) More... | |
void | monolish::vml::asin (const matrix::Dense< float > &A, matrix::Dense< float > &C) |
void | monolish::vml::asinh (const matrix::Dense< double > &A, matrix::Dense< double > &C) |
asinh to Dense matrix elements (C[0:nnz] = asinh(A[0:nnz])) More... | |
void | monolish::vml::asinh (const matrix::Dense< float > &A, matrix::Dense< float > &C) |
void | monolish::vml::atan (const matrix::Dense< double > &A, matrix::Dense< double > &C) |
atan to Dense matrix elements (C[0:nnz] = atan(A[0:nnz])) More... | |
void | monolish::vml::atan (const matrix::Dense< float > &A, matrix::Dense< float > &C) |
void | monolish::vml::atanh (const matrix::Dense< double > &A, matrix::Dense< double > &C) |
atanh to Dense matrix elements (C[0:nnz] = atanh(A[0:nnz])) More... | |
void | monolish::vml::atanh (const matrix::Dense< float > &A, matrix::Dense< float > &C) |
void | monolish::vml::ceil (const matrix::Dense< double > &A, matrix::Dense< double > &C) |
ceil to Dense matrix elements (C[0:nnz] = ceil(A[0:nnz])) More... | |
void | monolish::vml::ceil (const matrix::Dense< float > &A, matrix::Dense< float > &C) |
void | monolish::vml::div (const matrix::Dense< double > &A, const double alpha, matrix::Dense< double > &C) |
element by element division Dense matrix A and Dense matrix B. More... | |
void | monolish::vml::div (const matrix::Dense< double > &A, const matrix::Dense< double > &B, matrix::Dense< double > &C) |
element by element division Dense matrix A and Dense matrix B. More... | |
void | monolish::vml::div (const matrix::Dense< float > &A, const float alpha, matrix::Dense< float > &C) |
void | monolish::vml::div (const matrix::Dense< float > &A, const matrix::Dense< float > &B, matrix::Dense< float > &C) |
void | monolish::vml::floor (const matrix::Dense< double > &A, matrix::Dense< double > &C) |
floor to Dense matrix elements (C[0:nnz] = floor(A[0:nnz])) More... | |
void | monolish::vml::floor (const matrix::Dense< float > &A, matrix::Dense< float > &C) |
void | monolish::vml::max (const matrix::Dense< double > &A, const matrix::Dense< double > &B, matrix::Dense< double > &C) |
Create a new Dense matrix with greatest elements of two matrices (C[0:nnz] = max(A[0:nnz], B[0:nnz])) More... | |
double | monolish::vml::max (const matrix::Dense< double > &C) |
Finds the greatest element in Dense matrix (max(C[0:nnz])) More... | |
void | monolish::vml::max (const matrix::Dense< float > &A, const matrix::Dense< float > &B, matrix::Dense< float > &C) |
float | monolish::vml::max (const matrix::Dense< float > &C) |
void | monolish::vml::min (const matrix::Dense< double > &A, const matrix::Dense< double > &B, matrix::Dense< double > &C) |
Create a new Dense matrix with smallest elements of two matrices (C[0:nnz] = min(A[0:nnz], B[0:nnz])) More... | |
double | monolish::vml::min (const matrix::Dense< double > &C) |
Finds the smallest element in Dense matrix (min(C[0:nnz])) More... | |
void | monolish::vml::min (const matrix::Dense< float > &A, const matrix::Dense< float > &B, matrix::Dense< float > &C) |
float | monolish::vml::min (const matrix::Dense< float > &C) |
void | monolish::vml::mul (const matrix::Dense< double > &A, const double alpha, matrix::Dense< double > &C) |
element by element multiplication Dense matrix A and Dense matrix B. More... | |
void | monolish::vml::mul (const matrix::Dense< double > &A, const matrix::Dense< double > &B, matrix::Dense< double > &C) |
element by element multiplication Dense matrix A and Dense matrix B. More... | |
void | monolish::vml::mul (const matrix::Dense< float > &A, const float alpha, matrix::Dense< float > &C) |
void | monolish::vml::mul (const matrix::Dense< float > &A, const matrix::Dense< float > &B, matrix::Dense< float > &C) |
void | monolish::vml::pow (const matrix::Dense< double > &A, const double alpha, matrix::Dense< double > &C) |
power to Dense matrix elements by scalar value (C[0:N] = pow(A[0:N], alpha)) More... | |
void | monolish::vml::pow (const matrix::Dense< double > &A, const matrix::Dense< double > &B, matrix::Dense< double > &C) |
power to Dense matrix elements Dense matrix (C[0:N] = pow(A[0:N], B[0:N])) More... | |
void | monolish::vml::pow (const matrix::Dense< float > &A, const float alpha, matrix::Dense< float > &C) |
void | monolish::vml::pow (const matrix::Dense< float > &A, const matrix::Dense< float > &B, matrix::Dense< float > &C) |
void | monolish::vml::reciprocal (const matrix::Dense< double > &a, matrix::Dense< double > &y) |
reciprocal to Dense matrix elements (C[0:nnz] = 1 / A[0:nnz]) More... | |
void | monolish::vml::reciprocal (const matrix::Dense< float > &a, matrix::Dense< float > &y) |
void | monolish::vml::sign (const matrix::Dense< double > &A, matrix::Dense< double > &C) |
sign to Dense matrix elements (C[0:nnz] = sign(A[0:nnz])) More... | |
void | monolish::vml::sign (const matrix::Dense< float > &A, matrix::Dense< float > &C) |
void | monolish::vml::sin (const matrix::Dense< double > &A, matrix::Dense< double > &C) |
sin to Dense matrix elements (C[0:nnz] = sin(A[0:nnz])) More... | |
void | monolish::vml::sin (const matrix::Dense< float > &A, matrix::Dense< float > &C) |
void | monolish::vml::sinh (const matrix::Dense< double > &A, matrix::Dense< double > &C) |
sinh to Dense matrix elements (C[0:nnz] = sinh(A[0:nnz])) More... | |
void | monolish::vml::sinh (const matrix::Dense< float > &A, matrix::Dense< float > &C) |
void | monolish::vml::sqrt (const matrix::Dense< double > &A, matrix::Dense< double > &C) |
sqrt to Dense matrix elements (C[0:nnz] = sqrt(A[0:nnz])) More... | |
void | monolish::vml::sqrt (const matrix::Dense< float > &A, matrix::Dense< float > &C) |
void | monolish::vml::sub (const matrix::Dense< double > &A, const double alpha, matrix::Dense< double > &C) |
element by element subtract Dense matrix A and Dense matrix B. More... | |
void | monolish::vml::sub (const matrix::Dense< double > &A, const matrix::Dense< double > &B, matrix::Dense< double > &C) |
element by element subtract Dense matrix A and Dense matrix B. More... | |
void | monolish::vml::sub (const matrix::Dense< float > &A, const float alpha, matrix::Dense< float > &C) |
void | monolish::vml::sub (const matrix::Dense< float > &A, const matrix::Dense< float > &B, matrix::Dense< float > &C) |
void | monolish::vml::tan (const matrix::Dense< double > &A, matrix::Dense< double > &C) |
tan to Dense matrix elements (C[0:nnz] = tan(A[0:nnz])) More... | |
void | monolish::vml::tan (const matrix::Dense< float > &A, matrix::Dense< float > &C) |
void | monolish::vml::tanh (const matrix::Dense< double > &A, matrix::Dense< double > &C) |
tanh to Dense matrix elements (C[0:nnz] = tanh(A[0:nnz])) More... | |
void | monolish::vml::tanh (const matrix::Dense< float > &A, matrix::Dense< float > &C) |