|
PLASMA
2.4.5
PLASMA - Parallel Linear Algebra for Scalable Multi-core Architectures
|
Example for solving overdetermined linear systems. 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.
Macros | |
| #define | max(a, b) ((a) > (b) ? (a) : (b)) |
| #define | min(a, b) ((a) < (b) ? (a) : (b)) |
Functions | |
| int | check_solution (int, int, int, double *, int, double *, double *, int) |
| int | main () |
Variables | |
| int | IONE = 1 |
| int | ISEED [4] = {0,0,0,1} |
Example for solving overdetermined linear systems.
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_dgeqrs.c.
| #define max | ( | a, | |
| b | |||
| ) | ((a) > (b) ? (a) : (b)) |
Definition at line 28 of file example_dgeqrs.c.
| #define min | ( | a, | |
| b | |||
| ) | ((a) < (b) ? (a) : (b)) |
Definition at line 31 of file example_dgeqrs.c.
| int check_solution | ( | int | M, |
| int | N, | ||
| int | NRHS, | ||
| double * | A1, | ||
| int | LDA, | ||
| double * | B1, | ||
| double * | B2, | ||
| int | LDB | ||
| ) |
| int main | ( | ) |
Definition at line 39 of file example_dgeqrs.c.
References check_solution(), IONE, ISEED, PLASMA_Alloc_Workspace_dgeqrf(), PLASMA_dgeqrf(), PLASMA_dgeqrs(), PLASMA_Finalize(), PLASMA_Init(), and T.

| int IONE = 1 |
Definition at line 36 of file example_dgeqrs.c.
| int ISEED[4] = {0,0,0,1} |
Definition at line 37 of file example_dgeqrs.c.