-
Notifications
You must be signed in to change notification settings - Fork 89
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
Mlir disable specific ops #2882
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## develop #2882 +/- ##
========================================
Coverage 91.82% 91.82%
========================================
Files 477 477
Lines 18112 18112
========================================
Hits 16631 16631
Misses 1481 1481 ☔ View full report in Codecov by Sentry. |
{ | ||
if(s.empty()) | ||
return false; | ||
return contains({'!', '~'}, s[0]); |
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.
you don't necessarily need to use contains
s[0] == '!'
or s[0] == '~'
should suffice.
We should update the documentation showing how to disable the specific ops |
Specific ops can be disabled using the
!
or~
prefix to disable it.