|
ExaGeoStat
ExaGeoStat is a parallel high performance unified framework for geostatistics on manycore systems.
|
#include "../include/exageostatcore.h"Go to the source code of this file.
Functions | |
| double | core_dmdet (double *A, int m, int n, int m0, int n0) |
Copyright (c) 2017-2018 King Abdullah University of Science and Technology All rights reserved.
ExaGeoStat is a software package provided by KAUST
Calculate determinant of a given triangular matrix (A).
Definition in file core_dmdet.c.
| double core_dmdet | ( | double * | A, |
| int | m, | ||
| int | n, | ||
| int | m0, | ||
| int | n0 | ||
| ) |
core_dmdet - Calculate the determinant of the matrix A. The routine makes only one pass through the tile A. One tile operation.
| [out] | A | The m-by-n matrix on which to calculate the determinant. |
| [in] | m | The number of rows in the tile A. |
| [in] | n | The number of cols in the tile A. |
| [in] | m0 | global row index of the tile A. |
| [in] | n0 | global col index of the tile A. |
Definition at line 51 of file core_dmdet.c.