Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
MPI-BugBench
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
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
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
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
High Performance Computing - Public
MPI-BugBench
Commits
6ee926c6
Commit
6ee926c6
authored
Apr 29, 2024
by
Jammer, Tim
Browse files
Options
Downloads
Patches
Plain Diff
fix to use new level
parent
bc152dc2
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
scripts/errors/coll/ParamMatchingType.py
+2
-2
2 additions, 2 deletions
scripts/errors/coll/ParamMatchingType.py
scripts/main.py
+1
-1
1 addition, 1 deletion
scripts/main.py
with
3 additions
and
3 deletions
scripts/errors/coll/ParamMatchingType.py
+
2
−
2
View file @
6ee926c6
...
...
@@ -184,12 +184,12 @@ class InvalidComErrorColl(ErrorGenerator):
for
f
in
self
.
functions_to_use
:
for
comm
in
predefined_comms
+
comm_creators
+
intercomms
:
for
i
,
t1
in
enumerate
(
types
):
if
generate_level
==
REAL_WORLD_
TEST
_LEVEL
and
not
is_combination_important
(
real_world_score_table
,
if
generate_level
in
REAL_WORLD_
FILTERING
_LEVEL
S
and
not
is_combination_important
(
real_world_score_table
,
f
,
datatype
=
t1
.
lower
(),
communicator
=
comm
):
continue
for
t2
in
types
[
i
:]:
if
generate_level
==
REAL_WORLD_
TEST
_LEVEL
and
not
is_combination_important
(
if
generate_level
in
REAL_WORLD_
FILTERING
_LEVEL
S
and
not
is_combination_important
(
real_world_score_table
,
f
,
datatype
=
t2
.
lower
(),
communicator
=
comm
):
continue
if
is_combination_compatible
(
t1
,
t2
,
f
):
...
...
This diff is collapsed.
Click to expand it.
scripts/main.py
+
1
−
1
View file @
6ee926c6
...
...
@@ -31,7 +31,7 @@ if __name__ == "__main__":
gencodes_dir
=
ARGS
.
outpath
score_table
=
None
if
ARGS
.
level
==
REAL_WORLD_
TEST
_LEVEL
:
if
ARGS
.
level
in
REAL_WORLD_
FILTERING
_LEVEL
S
:
print
(
"
Read real world dataset and build scoring table
"
)
score_table
=
get_scoring_table
(
pd
.
read_csv
(
ARGS
.
real_world_data
,
header
=
0
,
low_memory
=
False
),
c_only
=
True
)
...
...
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