|
PLASMA
2.4.5
PLASMA - Parallel Linear Algebra for Scalable Multi-core Architectures
|
Example for solving a system of linear equations using Cholesky factorization and PLASMA_strsm routine. More...
#include <stdlib.h>#include <stdio.h>#include <string.h>#include <math.h>#include <plasma.h>#include <cblas.h>#include <lapacke.h>#include <core_blas.h>
Go to the source code of this file.
Functions | |
| int | check_solution (int, int, float *, int, float *, float *, int) |
| int | main () |
Variables | |
| int | IONE = 1 |
| int | ISEED [4] = {0,0,0,1} |
Example for solving a system of linear equations using Cholesky factorization and PLASMA_strsm routine.
PLASMA testing routines PLASMA is a software package provided by Univ. of Tennessee, Univ. of California Berkeley and Univ. of Colorado Denver
Definition in file example_strsm.c.
| int check_solution | ( | int | N, |
| int | NRHS, | ||
| float * | A1, | ||
| int | LDA, | ||
| float * | B1, | ||
| float * | B2, | ||
| int | LDB | ||
| ) |
| int main | ( | ) |
Definition at line 33 of file example_strsm.c.
References check_solution(), PLASMA_Finalize(), PLASMA_Init(), PLASMA_slacpy(), PLASMA_splgsy(), PLASMA_splrnt(), PLASMA_spotrf(), PLASMA_strsm(), PlasmaLeft, PlasmaLower, PlasmaNonUnit, PlasmaNoTrans, PlasmaTrans, and PlasmaUpperLower.

| int IONE = 1 |
Definition at line 30 of file example_strsm.c.
| int ISEED[4] = {0,0,0,1} |
Definition at line 31 of file example_strsm.c.