-
Notifications
You must be signed in to change notification settings - Fork 2.9k
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
enhance: [bitset] multiple 'and' and 'or' in a single op #33345
enhance: [bitset] multiple 'and' and 'or' in a single op #33345
Conversation
Invalid PR Title Format Detected Your PR submission does not adhere to our required standards. To ensure clarity and consistency, please meet the following criteria:
Required Title Structure:
Where Example:
Please review and update your PR to comply with these guidelines. |
@alexanderguzhva Please associate the related issue to the body of your Pull Request. (eg. “issue: #”) |
ac54891
to
14c3828
Compare
@alexanderguzhva ut workflow job failed, comment |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #33345 +/- ##
==========================================
+ Coverage 72.34% 80.70% +8.36%
==========================================
Files 1310 1311 +1
Lines 183596 183979 +383
==========================================
+ Hits 132819 148480 +15661
+ Misses 45658 30389 -15269
+ Partials 5119 5110 -9
|
14c3828
to
25ef68f
Compare
@alexanderguzhva ut workflow job failed, comment |
25ef68f
to
dbe3e7d
Compare
/lgtm |
/hold |
@alexanderguzhva E2e jenkins job failed, comment |
fb5c63c
to
7faad85
Compare
/unhold |
@alexanderguzhva E2e jenkins job failed, comment |
@alexanderguzhva go-sdk check failed, comment |
7faad85
to
42f00db
Compare
@alexanderguzhva E2e jenkins job failed, comment |
@alexanderguzhva go-sdk check failed, comment |
/run-cpu-e2e |
rerun go-sdk |
@alexanderguzhva E2e jenkins job failed, comment |
@alexanderguzhva go-sdk check failed, comment |
rerun go-sdk |
/run-cpu-e2e |
42f00db
to
c6cbc61
Compare
Signed-off-by: Alexandr Guzhva <[email protected]>
c6cbc61
to
cb02da7
Compare
@alexanderguzhva go-sdk check failed, comment |
rerun go-sdk |
/approve |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: alexanderguzhva, czs007 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 |
issue: #34117 pr: #33345 Refactoring: * Added a capability to perform multiple bitwise and and or operations in a single op * AVX2, AVX512, ARM NEON, ARM SVE backed bitwise and, op, xor and sub ops * more unit tests for bitset * fixed a bug in or_with_count for certain bitset sizes * fixed a bug for certain offset values for inplace operations that take two bitsets Signed-off-by: Alexandr Guzhva <[email protected]>
issue #34117
and
andor
operations in a single opand
,op
,xor
andsub
opsor_with_count
for certain bitset sizes