Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
libcdi
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mpim-sw
libcdi
Commits
4045d96b
Commit
4045d96b
authored
9 months ago
by
Uwe Schulzweida
Browse files
Options
Downloads
Patches
Plain Diff
NetCDF4: switched off output chunk cache
parent
3ff24aa4
No related branches found
Branches containing commit
No related tags found
Tags containing commit
3 merge requests
!88
M214003/develop
,
!87
M214003/develop
,
!86
M214003/develop
Pipeline
#71130
failed
3 weeks ago
Stage: external
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
ChangeLog
+5
-1
5 additions, 1 deletion
ChangeLog
src/cdf_write.c
+11
-0
11 additions, 0 deletions
src/cdf_write.c
with
16 additions
and
1 deletion
ChangeLog
+
5
−
1
View file @
4045d96b
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
src/cdf_write.c
+
11
−
0
View file @
4045d96b
...
...
@@ -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
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment