Skip to content
Snippets Groups Projects
Commit 4045d96b authored by Uwe Schulzweida's avatar Uwe Schulzweida
Browse files

NetCDF4: switched off output chunk cache

parent 3ff24aa4
No related branches found
No related tags found
3 merge requests!88M214003/develop,!87M214003/develop,!86M214003/develop
Pipeline #71130 failed
......@@ -4,9 +4,13 @@
* using EXSE library version 2.0.0
* Version 2.4.2 released
2024-06-20 Uwe Schulzweida
* NetCDF4: switched off output chunk cache
2024-06-19 Uwe Schulzweida
* NetCDF4: improved calculation of chunk cache size
* NetCDF4: improved calculation of input chunk cache size
2024-06-17 Uwe Schulzweida
......
......@@ -940,6 +940,15 @@ cdfGenVarname(int fileID, char name[CDI_MAX_NAME], int pnum, int pcat, int *pdis
*pdis = 255;
}
static void
cdfDefVarChunkCache(int fileID, int ncvarID)
{
size_t size = 0;
size_t nelems = 0;
float preemption = 0;
nc_set_var_chunk_cache(fileID, ncvarID, size, nelems, preemption);
}
int
cdfDefVar(stream_t *streamptr, int varID)
{
......@@ -1019,6 +1028,8 @@ cdfDefVar(stream_t *streamptr, int varID)
int ncvarID = -1;
cdf_def_var(fileID, name, xtype, ndims, dims, &ncvarID);
cdfDefVarChunkCache(fileID, ncvarID);
#ifdef HAVE_NETCDF4
#ifdef NC_QUANTIZE_BITROUND
if (xtype == NC_FLOAT || xtype == NC_DOUBLE)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment