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
Merge requests
!147
changed chunkSizeLim from 16mb to 4mb
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
changed chunkSizeLim from 16mb to 4mb
m214003/develop
into
develop
Overview
0
Commits
1
Pipelines
1
Changes
2
Merged
Uwe Schulzweida
requested to merge
m214003/develop
into
develop
1 week ago
Overview
0
Commits
1
Pipelines
1
Changes
2
Expand
0
0
Merge request reports
Viewing commit
08eb15c7
Show latest version
2 files
+
7
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
08eb15c7
changed chunkSizeLim from 16mb to 4mb
· 08eb15c7
Uwe Schulzweida
authored
1 week ago
src/cdf_write.c
+
3
−
2
Options
@@ -701,8 +701,9 @@ calc_chunksize(size_t chunkSizeLim, size_t size)
return
chunkSize
;
}
static
const
size_t
chunkSizeMin
=
262144
;
// 256k
static
const
size_t
chunkSizeLim
=
16777216
;
// 16m
static
const
size_t
chunkSizeMin
=
262144
;
// 256kb
// static const size_t chunkSizeLim = 16777216; // 16mb
static
const
size_t
chunkSizeLim
=
4194304
;
// 4mb
size_t
auto_chunksize_y
(
size_t
gridsize
,
size_t
xsize
,
size_t
ysize
)
Loading