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
Merge requests
!22
Coll local concurrency fixes
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Coll local concurrency fixes
coll-local-concurrency-fixes
into
main
Overview
0
Commits
2
Pipelines
0
Changes
1
Merged
Coll local concurrency fixes
Simon Schwitanski
requested to merge
coll-local-concurrency-fixes
into
main
3 months ago
Overview
0
Commits
2
Pipelines
0
Changes
1
0
0
Merge request reports
Viewing commit
dfe7bad8
Prev
Next
Show latest version
1 file
+
4
−
4
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
dfe7bad8
Fix collective LocalConcurrency tests
· dfe7bad8
Simon Schwitanski
authored
3 months ago
scripts/errors/coll/LocalConcurrency.py
+
4
−
4
View file @ dfe7bad8
Edit in single-file editor
Open in Web IDE
Show full file
@@ -9,11 +9,11 @@ from Infrastructure.TemplateFactory import get_collective_template
from
Infrastructure.Variables
import
*
class
InvalidRankErrorColl
(
ErrorGenerator
):
nbfunc_to_use
=
[
"
mpi_iallreduce
"
,
"
mpi_ialltoall
"
,
"
mpi_ibcast
"
,
"
mpi_ireduce
"
,
"
mpi_iscatter
"
,
"
mpi_igather
"
,
"
mpi_iscan
"
]
class
LocalConcurrencyErrorColl
(
ErrorGenerator
):
def
__init__
(
self
):
self
.
nbfunc_to_use
=
[
"
mpi_iallreduce
"
,
"
mpi_ialltoall
"
,
"
mpi_ibcast
"
,
"
mpi_ireduce
"
,
"
mpi_iscatter
"
,
"
mpi_igather
"
,
"
mpi_iscan
"
]
pass
def
get_feature
(
self
):
@@ -33,5 +33,5 @@ class InvalidRankErrorColl(ErrorGenerator):
yield
tm
if
generate_level
>
=
BASIC_TEST_LEVEL
:
if
generate_level
<
=
BASIC_TEST_LEVEL
:
return
Loading