Report Typos and Errors    
Semi-Lagrangian Library
Modular library for kinetic and gyrokinetic simulations of plasmas in fusion energy devices.
Derived types and interfaces | Functions/Subroutines
sll_m_pastix Module Reference

Derived types and interfaces

type  pastix_solver
 
interface  initialize
 
interface  solve
 
interface  factorize
 
interface  delete
 

Functions/Subroutines

subroutine init_pastix (self, n, nnzeros, row_ptr, col_ind, val)
 
subroutine factorize_pastix (self)
 
subroutine solve_pastix_without_rhs (self, sol)
 
subroutine solve_pastix_with_rhs (self, rhs, sol)
 
subroutine free_pastix (self)
 

Function/Subroutine Documentation

◆ factorize_pastix()

subroutine sll_m_pastix::factorize_pastix ( type(pastix_solver self)
private

Definition at line 121 of file sll_m_pastix.F90.

◆ free_pastix()

subroutine sll_m_pastix::free_pastix ( type(pastix_solver self)
private

Definition at line 210 of file sll_m_pastix.F90.

◆ init_pastix()

subroutine sll_m_pastix::init_pastix ( type(pastix_solver self,
integer(kind=i32), intent(in)  n,
intent(in)  nnzeros,
integer(kind=i32), dimension(:), intent(in), target  row_ptr,
integer(kind=i32), dimension(:), intent(in), target  col_ind,
real(kind=f64), dimension(:), intent(in), target  val 
)
private

Definition at line 60 of file sll_m_pastix.F90.

◆ solve_pastix_with_rhs()

subroutine sll_m_pastix::solve_pastix_with_rhs ( type(pastix_solver self,
real(kind=f64), dimension(:)  rhs,
real(kind=f64), dimension(:)  sol 
)
private

Definition at line 186 of file sll_m_pastix.F90.

◆ solve_pastix_without_rhs()

subroutine sll_m_pastix::solve_pastix_without_rhs ( type(pastix_solver self,
real(kind=f64), dimension(:), target  sol 
)
private

Definition at line 163 of file sll_m_pastix.F90.

    Report Typos and Errors