pub unsafe fn dporfs(
uplo: u8,
n: i32,
nrhs: i32,
a: &[f64],
lda: i32,
af: &[f64],
ldaf: i32,
b: &[f64],
ldb: i32,
x: &mut [f64],
ldx: i32,
ferr: &mut [f64],
berr: &mut [f64],
work: &mut [f64],
iwork: &mut [i32],
info: &mut i32,
)