power to CRS matrix elements (C[0:N] = pow(A[0:N], B[0:N]))
More...
|
void | monolish::vml::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])) More...
|
|
void | monolish::vml::pow (const matrix::CRS< float > &A, const matrix::CRS< float > &B, matrix::CRS< float > &C) |
|
void | monolish::vml::pow (const tensor::tensor_CRS< double > &A, const tensor::tensor_CRS< double > &B, tensor::tensor_CRS< double > &C) |
| power to tensor_CRS matrix elements (C[0:N] = pow(A[0:N], B[0:N])) More...
|
|
void | monolish::vml::pow (const tensor::tensor_CRS< float > &A, const tensor::tensor_CRS< float > &B, tensor::tensor_CRS< float > &C) |
|
power to CRS matrix elements (C[0:N] = pow(A[0:N], B[0:N]))
power to tensor_CRS matrix elements (C[0:N] = pow(A[0:N], B[0:N]))
◆ pow() [1/4]
power to CRS matrix elements (C[0:N] = pow(A[0:N], B[0:N]))
- Parameters
-
A | monolish CRS Matrix (size M x N) |
B | monolish CRS Matrix (size M x N) |
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 (C[0:N] = pow(A[0:N], B[0:N]))
- Parameters
-
A | monolish tensor_CRS Matrix (size M x N) |
B | monolish tensor_CRS Matrix (size M x N) |
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]