FE-Project
Loading...
Searching...
No Matches
Public Member Functions | List of all members
scale_sparsemat::sparsemat_matmul Interface Reference

Public Member Functions

subroutine sparsemat_matmul1 (a, b, c)
 
subroutine sparsemat_matmul2 (a, b, c)
 

Detailed Description

Definition at line 56 of file scale_sparsemat.F90.

Member Function/Subroutine Documentation

◆ sparsemat_matmul1()

subroutine scale_sparsemat::sparsemat_matmul::sparsemat_matmul1 ( type(sparsemat), intent(in) a,
real(rp), dimension(:), intent(in) b,
real(rp), dimension(a%m), intent(out) c )

Definition at line 342 of file scale_sparsemat.F90.

343 implicit none
344
345 type(sparsemat), intent(in) :: A
346 real(RP), intent(in ) :: b(:)
347 real(RP), intent(out) :: c(A%M)
348
349 !---------------------------------------------------------------------------
350
351 select case( a%storage_format_id )
352 case( sparsemat_storage_typeid_csr )
353 call sparsemat_matmul_csr_1( a%val, a%colIdx, a%rowPtr, b, c, &
354 a%M, a%N, a%nnz, a%rowPtrSize )
355 case( sparsemat_storage_typeid_ell )
356 call sparsemat_matmul_ell_1( a%val, a%colIdx, b, c, &
357 a%M, a%N, a%nnz, a%col_size )
358 end select
359
360 return

References scale_sparsemat::sparsemat_storage_typeid_csr, and scale_sparsemat::sparsemat_storage_typeid_ell.

◆ sparsemat_matmul2()

subroutine scale_sparsemat::sparsemat_matmul::sparsemat_matmul2 ( type(sparsemat), intent(in) a,
real(rp), dimension(:,:), intent(in) b,
real(rp), dimension(size(b,1),a%m), intent(out) c )

Definition at line 364 of file scale_sparsemat.F90.

365 implicit none
366
367 type(sparsemat), intent(in) :: A
368 real(RP), intent(in ) :: b(:,:)
369 real(RP), intent(out) :: c(size(b,1),A%M)
370
371 !---------------------------------------------------------------------------
372
373 select case( a%storage_format_id )
374 case( sparsemat_storage_typeid_csr )
375 call sparsemat_matmul_csr_2( a%val, a%colIdx, a%rowPtr, b, c, &
376 a%M, a%N, a%nnz, a%rowPtrSize, size(b,1) )
377 case( sparsemat_storage_typeid_ell )
378 call sparsemat_matmul_ell_2( a%val, a%colIdx, b, c, &
379 a%M, a%N, a%nnz, a%col_size, size(b,1) )
380 end select
381
382 return

References scale_sparsemat::sparsemat_storage_typeid_csr, and scale_sparsemat::sparsemat_storage_typeid_ell.


The documentation for this interface was generated from the following file: