Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
GenericIO
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
hacc
GenericIO
Compare revisions
gio-sz to master
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
hacc/genericio
Select target project
No results found
master
Select Git revision
Swap
Target
mbuehlmann/genericio
Select target project
hacc/genericio
mbuehlmann/genericio
2 results
gio-sz
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (1)
changed atoi to atol so benchmark can write correct number of rows beyond 4 byte limit
· 99e61eed
Adrian Pope
authored
8 months ago
99e61eed
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
GenericIOBenchmarkWrite.cxx
+1
-1
1 addition, 1 deletion
GenericIOBenchmarkWrite.cxx
with
1 addition
and
1 deletion
GenericIOBenchmarkWrite.cxx
View file @
99e61eed
...
@@ -128,7 +128,7 @@ int main(int argc, char *argv[]) {
...
@@ -128,7 +128,7 @@ int main(int argc, char *argv[]) {
GenericIO
::
setNaturalDefaultPartition
();
GenericIO
::
setNaturalDefaultPartition
();
char
*
mpiioName
=
argv
[
a
++
];
char
*
mpiioName
=
argv
[
a
++
];
size_t
Np
=
ato
i
(
argv
[
a
++
])
/
commRanks
;
size_t
Np
=
ato
l
(
argv
[
a
++
])
/
commRanks
;
int
seed
=
atoi
(
argv
[
a
++
]);
int
seed
=
atoi
(
argv
[
a
++
]);
srand48
(
seed
+
commRank
);
srand48
(
seed
+
commRank
);
...
...
This diff is collapsed.
Click to expand it.