-
Notifications
You must be signed in to change notification settings - Fork 120
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
Added AnyFilterBenchmark and AllFilterBenchmark #3454
Conversation
Hi @MeenuyD. Thanks for your PR. I'm waiting for a knative-extensions member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #3454 +/- ##
=========================================
Coverage 61.58% 61.58%
Complexity 762 762
=========================================
Files 181 181
Lines 12405 12405
Branches 265 265
=========================================
Hits 7640 7640
Misses 4163 4163
Partials 602 602
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
DEVELOPMENT.md
Outdated
To run benchmarks for any filter benchmark , you can use: | ||
|
||
```shell | ||
./hack/run.sh benchmark-filter AnyFilterBenchmark | ||
``` | ||
|
||
Alternatively, if you want to run all of the benchmarks you can run: | ||
|
||
```shell | ||
./hack/run.sh benchmark-filters | ||
./hack/run.sh benchmark-filter AllFilterBenchmark | ||
``` |
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 don't think this change makes sense, as we are already pointing users to the list of available filters on line 177. The lines you deleted were actually showing that you can call ./hack/run.sh benchmark-filters
, which will benchmark all of the filters, not just one of them.
Would you be able to revert the changes to this file?
Co-authored-by: Calum Murray <[email protected]>
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
/cc @creydr
/test upgrade-tests |
/retest-required |
/ok-to-test |
/cc @pierDipi |
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.
/approve
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: MeenuyD, pierDipi The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
/test upgrade-tests |
/retest-required |
1 similar comment
/retest-required |
feat: Add AnyFilterBenchmark and AllFilterBenchmark to benchmark filter list
Description:In this pr have added support for running benchmarks for AnyFilterBenchmark and AllFilterBenchmark by updating the filter-class-list.txt file. Now, users can run these benchmarks using the command ./hack/run.sh benchmark-filter AnyFilterBenchmark and ./hack/run.sh benchmark-filter AllFilterBenchmark. This enhancement enables performance testing for AnyFilter and AllFilter, providing valuable insights into their efficiency.
Persona:
This feature is essential for developers and performance testers who are working on optimizing the filter functionality within the system. By including AnyFilterBenchmark and AllFilterBenchmark in the benchmark filter list, they can assess the performance impact of changes made to these filters.
./hack/run.sh benchmark-filter AnyFilterBenchmark and ./hack/run.sh benchmark-filter AllFilterBenchmark
Add
AnyFilterBenchmark
andAllFilterBenchmark
options to benchmark run script. #3453