-
Notifications
You must be signed in to change notification settings - Fork 117
[bugfix] Fix bug in performance report output #818
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[bugfix] Fix bug in performance report output #818
Conversation
reframe/frontend/statistics.py
Outdated
| for key, ref in t.check.perfvalues.items(): | ||
| var = key.split(':')[-1] | ||
| val = ref[0] | ||
| val = ref[1] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am wondering what has changed in the reference tuple?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This change in pipeline.py is redundant. I suggest reverting it back without the tag. Then statistics will be fine again.
vkarak
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we should add a basic unit test that will protect us from future regressions.
victorusu
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm
reframe/frontend/statistics.py
Outdated
| for key, ref in t.check.perfvalues.items(): | ||
| var = key.split(':')[-1] | ||
| val = ref[0] | ||
| val = ref[1] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This change in pipeline.py is redundant. I suggest reverting it back without the tag. Then statistics will be fine again.
|
I am raising this issue's priority, cos this feature was supposed to be introduced in 2.18 and it is broken! |
|
@jenkins-cscs retry daint |
|
@jenkins-cscs retry none |
Fixes #816