Open
Conversation
4eb5a84 to
d77be29
Compare
Bumps [step-security/harden-runner](https://github.com/step-security/harden-runner) from 2.10.1 to 2.10.2. - [Release notes](https://github.com/step-security/harden-runner/releases) - [Commits](step-security/harden-runner@91182cc...0080882) --- updated-dependencies: - dependency-name: step-security/harden-runner dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
…step-security/harden-runner-2.10.2 PiperOrigin-RevId: 697981775
PiperOrigin-RevId: 698357330
PiperOrigin-RevId: 698416280
PiperOrigin-RevId: 698685120
Also reduce #if in mainline by factoring into helper functions, share code between Linux and FreeBSD Use anon namespace instead of static PiperOrigin-RevId: 699906189
PiperOrigin-RevId: 699936076
PiperOrigin-RevId: 699943134
The test passes with the most recent clang. PiperOrigin-RevId: 700385250
Also split mask_test into mask_set_test, remove unused overload in scalar, modernize overloads (SFINAE instead of type tags). PiperOrigin-RevId: 700701299
Also split mask_test into mask_set_test, remove unused overload in scalar, modernize overloads (SFINAE instead of type tags). PiperOrigin-RevId: 700938851
PiperOrigin-RevId: 701876987
Provide DFromM on all targets except SVE/RVV. Also split mask_test into mask_set_test, remove unused overload in scalar, modernize overloads (SFINAE instead of type tags). arm_sve required moving some sections earlier before their first usage. PiperOrigin-RevId: 701919058
PiperOrigin-RevId: 702035129
PiperOrigin-RevId: 702229080
Bumps [actions/cache](https://github.com/actions/cache) from 4.0.2 to 4.2.0. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@0c45773...1bd1e32) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
…actions/cache-4.2.0 PiperOrigin-RevId: 703468488
PiperOrigin-RevId: 705134221
PiperOrigin-RevId: 705569288
…step-security/harden-runner-2.10.4 PiperOrigin-RevId: 717528316
PiperOrigin-RevId: 717590393
-- fa07d18 by scuzqy <scuzqy@outlook.com>: Resolve TODO in aligned_allocator And updated corresponding test. AllocateAligned was designed to take POD types only. COPYBARA_INTEGRATE_REVIEW=google#2298 from scuzqy:AlignedAllocatorPOD fa07d18 PiperOrigin-RevId: 717822922
PiperOrigin-RevId: 718362378
…uzqy PiperOrigin-RevId: 718419557
PiperOrigin-RevId: 720535765
PiperOrigin-RevId: 720561925
Remove OrZero suffixes for consistency Drop duplication of generic implementation
Remove OrZero suffixes for consistency Convert SqrtLower into MaskedSqrtOr Add TODO comments about GetExponent to x86_512 and ppc_vsx
…operations PiperOrigin-RevId: 720600683
…t_promote_demote PiperOrigin-RevId: 720897646
Remove MulLower Use MaskedMulOr instead Replace MulAddLower with MaskedMulAddOr
…d_arithmetic PiperOrigin-RevId: 720957423
Remove OrZero suffixes and reorder arguments for consistency Rename Cplx* ops to Complex* for legibility Fuse into MulAdd in generic implementation
8a57a7a to
10312bb
Compare
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.
Introduces basic complex arithmetic for float and integer types. Some masked operations for complex numbers are also included.
A single complex value is formed of a real part which is stored in an even lane, and the imaginary part which is stored in the following odd lane.
All complex operations are written for
arm_sve-inl.handgeneric_ops-inl.hand a new set of tests is introduced for all the new complex operations.