ExaGeoStat
ExaGeoStat is a parallel high performance unified framework for geostatistics on manycore systems.
core_dzcpy.c
Go to the documentation of this file.
1 
20 #include "../include/exageostatcore.h"
21 
22 
23 
24 /***************************************************************************/
49 void core_dzcpy(double *Z, int m, int m0, double *r) {
50 
51  memcpy(Z, &r[m0], m * sizeof(double));
52 }
void core_dzcpy(double *Z, int m, int m0, double *r)
Definition: core_dzcpy.c:49