monolish  0.17.1
MONOlithic LInear equation Solvers for Highly-parallel architecture
Functions
monolish::vml::max

Create a new CRS matrix with greatest elements of CRS matrix or scalar (C[0:nnz] = max(A[0:nnz], alpha)) More...

Functions

void monolish::vml::max (const matrix::CRS< double > &A, const double alpha, matrix::CRS< double > &C)
 Create a new CRS matrix with greatest elements of CRS matrix or scalar (C[0:nnz] = max(A[0:nnz], alpha)) More...
 
void monolish::vml::max (const matrix::CRS< float > &A, const float alpha, matrix::CRS< float > &C)
 

Detailed Description

Create a new CRS matrix with greatest elements of CRS matrix or scalar (C[0:nnz] = max(A[0:nnz], alpha))

Function Documentation

◆ max() [1/2]

void monolish::vml::max ( const matrix::CRS< double > &  A,
const double  alpha,
matrix::CRS< double > &  C 
)

Create a new CRS matrix with greatest elements of CRS matrix or scalar (C[0:nnz] = max(A[0:nnz], alpha))

Parameters
Amonolish CRS matrix (size M x N)
alphascalar value
Cmonolish CRS matrix (size M x N)
Note
  • # of computation: nnz
  • Multi-threading: true
  • GPU acceleration: true
    • # of data transfer: 0
Warning
A and C must be same non-zero structure

◆ max() [2/2]

void monolish::vml::max ( const matrix::CRS< float > &  A,
const float  alpha,
matrix::CRS< float > &  C 
)