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

cdfDefVarChunkCache: added support for env CDI_CHUNK_CACHE

parent 4045d96b
No related branches found
No related tags found
3 merge requests!88M214003/develop,!87M214003/develop,!86M214003/develop
Pipeline #71187 failed
......@@ -946,6 +946,11 @@ cdfDefVarChunkCache(int fileID, int ncvarID)
size_t size = 0;
size_t nelems = 0;
float preemption = 0;
if (CDI_Chunk_Cache > 0 && nc_get_var_chunk_cache(fileID, ncvarID, &size, &nelems, &preemption) == NC_NOERR)
{
size = CDI_Chunk_Cache;
}
nc_set_var_chunk_cache(fileID, ncvarID, size, nelems, preemption);
}
......
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