ExaGeoStat
ExaGeoStat is a parallel high performance unified framework for geostatistics on manycore systems.
core_dmdet.c
Go to the documentation of this file.
1 
21 #include "../include/exageostatcore.h"
22 
23 
24 /***************************************************************************/
51 double core_dmdet (double *A, int m, int n, int m0, int n0) {
52 
53  int i;
54  double res = 0.0;
55  for (i = 0; i < m; i++) {
56  res += log(A[i + i * m]);
57  }
58 
59  return res;
60 }
#define A(m, n)
Definition: pdpotrf_diag.c:34
double core_dmdet(double *A, int m, int n, int m0, int n0)
Definition: core_dmdet.c:51