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
92b39674
Verified
Commit
92b39674
authored
Jun 7, 2024
by
Simon Schwitanski
Browse files
Options
Downloads
Patches
Plain Diff
Fix ITAC and MUST parsing of internal MPI crashes, they should not count as TP
parent
3f34ec3c
No related branches found
No related tags found
1 merge request
!17
Test infrastructure redesign
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
scripts/tools/itac.py
+8
-1
8 additions, 1 deletion
scripts/tools/itac.py
scripts/tools/must.py
+8
-9
8 additions, 9 deletions
scripts/tools/must.py
with
16 additions
and
10 deletions
scripts/tools/itac.py
+
8
−
1
View file @
92b39674
...
@@ -95,6 +95,13 @@ class Tool(AbstractTool):
...
@@ -95,6 +95,13 @@ class Tool(AbstractTool):
if
re
.
search
(
'
ERROR: Giving up now...
'
,
output
):
if
re
.
search
(
'
ERROR: Giving up now...
'
,
output
):
return
'
failure
'
return
'
failure
'
# if we arrive here, nothing relevant has been detected, MPI might just crashed internally, then return OK
if
re
.
search
(
'
Fatal error in internal_Comm_size
'
,
output
):
return
'
OK
'
if
re
.
search
(
r
'
Attempting to use an MPI routine \(PMPI_Comm_size\) before initializing or after finalizing MPICH
'
,
output
):
return
'
OK
'
print
(
f
"
>>>>[ INCONCLUSIVE ]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> (itac/
{
cachefile
}
)
"
)
print
(
f
"
>>>>[ INCONCLUSIVE ]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> (itac/
{
cachefile
}
)
"
)
print
(
output
)
print
(
output
)
print
(
"
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
"
)
print
(
"
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
"
)
...
...
This diff is collapsed.
Click to expand it.
scripts/tools/must.py
+
8
−
9
View file @
92b39674
...
@@ -155,15 +155,6 @@ class V18(AbstractTool):
...
@@ -155,15 +155,6 @@ class V18(AbstractTool):
if
re
.
search
(
'
Compilation of .*? raised an error \(retcode:
'
,
output
):
if
re
.
search
(
'
Compilation of .*? raised an error \(retcode:
'
,
output
):
return
'
UNIMPLEMENTED
'
return
'
UNIMPLEMENTED
'
if
re
.
search
(
'
caught MPI error
'
,
output
):
return
'
mpierr
'
if
re
.
search
(
'
Error
'
,
output
):
return
'
mpierr
'
if
re
.
search
(
'
MPI_ABORT
'
,
output
):
return
'
mpierr
'
if
re
.
search
(
'
YOUR APPLICATION TERMINATED WITH THE EXIT STRING: Segmentation fault
'
,
output
):
if
re
.
search
(
'
YOUR APPLICATION TERMINATED WITH THE EXIT STRING: Segmentation fault
'
,
output
):
return
'
segfault
'
return
'
segfault
'
if
re
.
search
(
'
caught signal nr 11
'
,
output
)
or
re
.
search
(
'
caught signal nr 6
'
,
output
):
if
re
.
search
(
'
caught signal nr 11
'
,
output
)
or
re
.
search
(
'
caught signal nr 6
'
,
output
):
...
@@ -181,6 +172,14 @@ class V18(AbstractTool):
...
@@ -181,6 +172,14 @@ class V18(AbstractTool):
if
os
.
path
.
exists
(
f
'
{
cachefile
}
.timeout
'
)
or
os
.
path
.
exists
(
f
'
{
logs_dir
}
/must/
{
cachefile
}
.timeout
'
):
if
os
.
path
.
exists
(
f
'
{
cachefile
}
.timeout
'
)
or
os
.
path
.
exists
(
f
'
{
logs_dir
}
/must/
{
cachefile
}
.timeout
'
):
return
'
timeout
'
return
'
timeout
'
if
re
.
search
(
'
caught MPI error
'
,
output
):
# if we arrive here we, then MUST just found an MPI error, but did not detect anything, so we return 'OK'
return
'
OK
'
if
re
.
search
(
'
Fatal error in internal_Comm_size
'
,
output
):
# if we arrive here, nothing relevant has been detected, MPI just crashed internally
return
'
OK
'
print
(
f
"
>>>>[ INCONCLUSIVE ]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> (
{
self
.
identify
()
}
/
{
cachefile
}
)
"
)
print
(
f
"
>>>>[ INCONCLUSIVE ]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> (
{
self
.
identify
()
}
/
{
cachefile
}
)
"
)
print
(
output
)
print
(
output
)
print
(
"
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
"
)
print
(
"
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
"
)
...
...
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