|
PLASMA
2.4.5
PLASMA - Parallel Linear Algebra for Scalable Multi-core Architectures
|
Example for solving a system of linear equations using LU factorization. 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, PLASMA_Complex32_t *, int, PLASMA_Complex32_t *, PLASMA_Complex32_t *, int) |
| int | main () |
Variables | |
| int | IONE = 1 |
| int | ISEED [4] = {0,0,0,1} |
Example for solving a system of linear equations using LU factorization.
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_cgesv.c.
| int check_solution | ( | int | N, |
| int | NRHS, | ||
| PLASMA_Complex32_t * | A1, | ||
| int | LDA, | ||
| PLASMA_Complex32_t * | B1, | ||
| PLASMA_Complex32_t * | B2, | ||
| int | LDB | ||
| ) |
Definition at line 98 of file example_cgesv.c.
References cblas_cgemm(), CBLAS_SADDR, CblasColMajor, CblasNoTrans, lapack_const, and PlasmaInfNorm.

| int main | ( | ) |
Definition at line 32 of file example_cgesv.c.
References check_solution(), IONE, IPIV, ISEED, L, PLASMA_Alloc_Workspace_cgesv_incpiv(), PLASMA_cgesv_incpiv(), PLASMA_Finalize(), and PLASMA_Init().

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