Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Philippe SWARTVAGHER
memory-contention
Commits
585511c7
Commit
585511c7
authored
Nov 23, 2021
by
Philippe SWARTVAGHER
Browse files
FilesParser: raise exception to better identify buggy file
parent
87136c83
Changes
1
Hide whitespace changes
Inline
Side-by-side
plot/comm_comp.py
View file @
585511c7
...
...
@@ -159,7 +159,10 @@ class FilesParser:
self
.
_per_core
=
True
for
f
in
files
:
self
.
_parse_file
(
f
)
try
:
self
.
_parse_file
(
f
)
except
Exception
as
e
:
raise
Exception
(
f
"Error during parsing of file
{
f
}
:
{
repr
(
e
)
}
"
)
if
self
.
x_type
==
"cursor"
:
# We convert cursor to arithmetic intensity:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment