Introduce pipeline configuration files - #8
Merged
Conversation
Signed-off-by: Lars Schneidenbach <schneidenbach@us.ibm.com>
Signed-off-by: Lars Schneidenbach <schneidenbach@us.ibm.com>
Signed-off-by: Lars Schneidenbach <schneidenbach@us.ibm.com>
mcalman
approved these changes
Jul 15, 2025
mcalman
left a comment
Contributor
There was a problem hiding this comment.
Should we silence warning/info logs that don't apply to the selected stages?
For example, with the following profile:
{
"stages": [
{"remove_ids_from_name": true}
]
}I get the following logs that aren't relevant with my selected stages:
2025-07-15T10:11:41.507758 WARNING rcu_util counter requested but no compiler log provided. No utilization will be plotted.
2025-07-15T10:11:43.071832 INFO Partial-overlap slices resolved: 0
2025-07-15T10:11:43.071880 INFO PEC event stats o/i: 0 / 0
2025-07-15T10:11:43.071891 INFO PEC event stats o/i: 0 / 0 Otherwise, all functionality looks good to me!
Member
Author
|
Removing output from deactivated stages is a great suggestion. Lets open an issue to keep this on the radar. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Allows to specify a profile or personality for the processing pipeline (
-P <filename>) parameter.The profile is a json file listing the stages/callback functions in their correct order and specifying whether they should be enabled (
true) or not (false). Any name not appearing is as if it was set tofalse.This allows to create pre-sets for recurring workflows without requiring to provide a long list of cmd line args.
The default assumes all stages potentially enabled (depending on command line options).