ExaGeoStat
ExaGeoStat is a parallel high performance unified framework for geostatistics on manycore systems.
core_ddotp.c
Go to the documentation of this file.
1 
20 #include "../include/exageostatcore.h"
21 
22 /***************************************************************************/
43 double core_ddotp(double *Z, double *dotproduct, int n)
44 {
45  return cblas_ddot(n, Z, 1, Z, 1);
46 }
47 
48 
49 
double core_ddotp(double *Z, double *dotproduct, int n)
Definition: core_ddotp.c:43