Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
TurTLE
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
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
Service Desk
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
TurTLE
TurTLE
Commits
4b9289fa
Commit
4b9289fa
authored
8 years ago
by
Berenger Bramas
Browse files
Options
Downloads
Patches
Plain Diff
change IO default numbers
parent
d9112744
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!21
Bugfix/nansampling
,
!9
Feature/limited particles output
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
bfps/cpp/particles/abstract_particles_output.hpp
+2
-2
2 additions, 2 deletions
bfps/cpp/particles/abstract_particles_output.hpp
with
2 additions
and
2 deletions
bfps/cpp/particles/abstract_particles_output.hpp
+
2
−
2
View file @
4b9289fa
...
...
@@ -73,8 +73,8 @@ public:
AssertMpi
(
MPI_Comm_rank
(
mpi_com
,
&
my_rank
));
AssertMpi
(
MPI_Comm_size
(
mpi_com
,
&
nb_processes
));
const
size_t
MinBytesPerProcess
=
env_utils
::
GetValue
<
size_t
>
(
"BFPS_PO_MIN_BYTES"
,
4
*
1024
*
1024
);
// Default
4
MB
const
size_t
ChunkBytes
=
env_utils
::
GetValue
<
size_t
>
(
"BFPS_PO_CHUNK_BYTES"
,
2
*
1024
*
1024
);
// Default
2
MB
const
size_t
MinBytesPerProcess
=
env_utils
::
GetValue
<
size_t
>
(
"BFPS_PO_MIN_BYTES"
,
32
*
1024
*
1024
);
// Default
32
MB
const
size_t
ChunkBytes
=
env_utils
::
GetValue
<
size_t
>
(
"BFPS_PO_CHUNK_BYTES"
,
8
*
1024
*
1024
);
// Default
8
MB
const
int
MaxProcessesInvolved
=
std
::
min
(
nb_processes
,
env_utils
::
GetValue
<
int
>
(
"BFPS_PO_MAX_PROCESSES"
,
128
));
// We split the processes using positions size only
...
...
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