power to CRS matrix elements by scalar value (C[0:N] = pow(A[0:N], alpha))
More...
|
void | monolish::vml::pow (const matrix::CRS< double > &A, const double alpha, matrix::CRS< double > &C) |
| power to CRS matrix elements by scalar value (C[0:N] = pow(A[0:N], alpha)) More...
|
|
void | monolish::vml::pow (const matrix::CRS< float > &A, const float alpha, matrix::CRS< float > &C) |
|
void | monolish::vml::pow (const tensor::tensor_CRS< double > &A, const double alpha, tensor::tensor_CRS< double > &C) |
| power to tensor_CRS matrix elements by scalar value (C[0:N] = pow(A[0:N], alpha)) More...
|
|
void | monolish::vml::pow (const tensor::tensor_CRS< float > &A, const float alpha, tensor::tensor_CRS< float > &C) |
|
power to CRS matrix elements by scalar value (C[0:N] = pow(A[0:N], alpha))
power to tensor_CRS matrix elements by scalar value (C[0:N] = pow(A[0:N], alpha))
◆ pow() [1/4]
power to CRS matrix elements by scalar value (C[0:N] = pow(A[0:N], alpha))
- Parameters
-
A | monolish CRS Matrix (size M x N) |
alpha | scalar value |
C | monolish CRS Matrix (size M x N) |
- Note
- # of computation: nnz
- Multi-threading: true
- GPU acceleration: true
- Warning
- A, B, and C must be same non-zero structure
◆ pow() [2/4]
◆ pow() [3/4]
power to tensor_CRS matrix elements by scalar value (C[0:N] = pow(A[0:N], alpha))
- Parameters
-
A | monolish tensor_CRS Matrix (size M x N) |
alpha | scalar value |
C | monolish tensor_CRS Matrix (size M x N) |
- Note
- # of computation: nnz
- Multi-threading: true
- GPU acceleration: true
- Warning
- A, B, and C must be same non-zero structure
◆ pow() [4/4]