-
Notifications
You must be signed in to change notification settings - Fork 260
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Neon] Add vcadd_rot270_f{16/32} and vcaddq_rot270_f{16/32/64}
- Loading branch information
朱季葳
authored and
朱季葳
committed
Oct 16, 2023
1 parent
2724a4f
commit fa9a14d
Showing
2 changed files
with
1,079 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,325 @@ | ||
/* SPDX-License-Identifier: MIT | ||
* | ||
* Permission is hereby granted, free of charge, to any person | ||
* obtaining a copy of this software and associated documentation | ||
* files (the "Software"), to deal in the Software without | ||
* restriction, including without limitation the rights to use, copy, | ||
* modify, merge, publish, distribute, sublicense, and/or sell copies | ||
* of the Software, and to permit persons to whom the Software is | ||
* furnished to do so, subject to the following conditions: | ||
* | ||
* The above copyright notice and this permission notice shall be | ||
* included in all copies or substantial portions of the Software. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, | ||
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | ||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND | ||
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS | ||
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN | ||
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN | ||
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
* SOFTWARE. | ||
* | ||
* Copyright: | ||
* 2023 Chi-Wei Chu <[email protected]> | ||
*/ | ||
|
||
#if !defined(SIMDE_ARM_NEON_CMLA_ROT270_LANE_H) | ||
#define SIMDE_ARM_NEON_CMLA_ROT270_LANE_H | ||
|
||
#include "types.h" | ||
#include "dup_lane.h" | ||
HEDLEY_DIAGNOSTIC_PUSH | ||
SIMDE_DISABLE_UNWANTED_DIAGNOSTICS | ||
SIMDE_BEGIN_DECLS_ | ||
|
||
|
||
SIMDE_FUNCTION_ATTRIBUTES | ||
simde_float16x4_t | ||
simde_vcmla_rot270_lane_f16(simde_float16x4_t r, simde_float16x4_t a, simde_float16x4_t b, const int lane) | ||
SIMDE_REQUIRE_CONSTANT_RANGE(lane, 0, 1) { | ||
simde_float16x4_t result; | ||
#if defined(SIMDE_ARM_NEON_A32V8_NATIVE) && SIMDE_ARCH_ARM_CHECK(8,3) && \ | ||
(!defined(HEDLEY_GCC_VERSION) || HEDLEY_GCC_VERSION_CHECK(9,0,0)) && \ | ||
(!defined(__clang__) || SIMDE_DETECT_CLANG_VERSION_CHECK(12,0,0)) | ||
SIMDE_CONSTIFY_2_(vcmla_rot270_lane_f16, result, (HEDLEY_UNREACHABLE(), result), lane, r, a, b); | ||
#else | ||
simde_float16x4_private | ||
r_ = simde_float16x4_to_private(r), | ||
a_ = simde_float16x4_to_private(a), | ||
b_ = simde_float16x4_to_private(simde_vdup_n_f16(simde_float16x4_to_private(b).values[lane])); | ||
|
||
#if defined(SIMDE_SHUFFLE_VECTOR_) && !defined(SIMDE_BUG_GCC_100760) | ||
a_.values = SIMDE_SHUFFLE_VECTOR_(16, 4, a_.values, a_.values, 1, 1, 3, 3); | ||
b_.values = SIMDE_SHUFFLE_VECTOR_(16, 4, -b_.values, b_.values, 5, 0, 7, 2); | ||
r_.values += b_.values * a_.values; | ||
#else | ||
SIMDE_VECTORIZE | ||
for (size_t i = 0 ; i < (sizeof(r_.values) / (2 * sizeof(r_.values[0]))) ; i++) { | ||
r_.values[2 * i] += b_.values[2 * i + 1] * a_.values[2 * i + 1]; | ||
r_.values[2 * i + 1] += -(b_.values[2 * i]) * a_.values[2 * i + 1]; | ||
} | ||
#endif | ||
|
||
result = simde_float16x4_from_private(r_); | ||
return result; | ||
#endif | ||
} | ||
#if defined(SIMDE_ARM_NEON_A32V8_ENABLE_NATIVE_ALIASES) | ||
#undef vcmla_rot270_lane_f16 | ||
#define vcmla_rot270_lane_f16(r, a, b, lane) simde_vcmla_rot270_lane_f16(r, a, b, lane) | ||
#endif | ||
|
||
SIMDE_FUNCTION_ATTRIBUTES | ||
simde_float32x2_t | ||
simde_vcmla_rot270_lane_f32(simde_float32x2_t r, simde_float32x2_t a, simde_float32x2_t b, const int lane) | ||
SIMDE_REQUIRE_CONSTANT_RANGE(lane, 0, 0) { | ||
#if defined(SIMDE_ARM_NEON_A32V8_NATIVE) && SIMDE_ARCH_ARM_CHECK(8,3) && \ | ||
(!defined(HEDLEY_GCC_VERSION) || HEDLEY_GCC_VERSION_CHECK(9,0,0)) && \ | ||
(!defined(__clang__) || SIMDE_DETECT_CLANG_VERSION_CHECK(12,0,0)) | ||
return vcmla_rot270_lane_f32(r, a, b, 0); | ||
#else | ||
simde_float32x2_private | ||
r_ = simde_float32x2_to_private(r), | ||
a_ = simde_float32x2_to_private(a), | ||
b_ = simde_float32x2_to_private(simde_vdup_n_f32(simde_float32x2_to_private(b).values[lane])); | ||
|
||
#if defined(SIMDE_SHUFFLE_VECTOR_) && !defined(SIMDE_BUG_GCC_100760) | ||
a_.values = SIMDE_SHUFFLE_VECTOR_(32, 8, a_.values, a_.values, 1, 1); | ||
b_.values = SIMDE_SHUFFLE_VECTOR_(32, 8, -b_.values, b_.values, 3, 0); | ||
r_.values += b_.values * a_.values; | ||
#else | ||
SIMDE_VECTORIZE | ||
for (size_t i = 0 ; i < (sizeof(r_.values) / (2 * sizeof(r_.values[0]))) ; i++) { | ||
r_.values[2 * i] += b_.values[2 * i + 1] * a_.values[2 * i + 1]; | ||
r_.values[2 * i + 1] += -(b_.values[2 * i]) * a_.values[2 * i + 1]; | ||
} | ||
#endif | ||
|
||
return simde_float32x2_from_private(r_); | ||
#endif | ||
} | ||
#if defined(SIMDE_ARM_NEON_A32V8_ENABLE_NATIVE_ALIASES) | ||
#undef vcmla_rot270_lane_f32 | ||
#define vcmla_rot270_lane_f32(r, a, b, lane) simde_vcmla_rot270_lane_f32(r, a, b, lane) | ||
#endif | ||
|
||
SIMDE_FUNCTION_ATTRIBUTES | ||
simde_float16x8_t | ||
simde_vcmlaq_rot270_lane_f16(simde_float16x8_t r, simde_float16x8_t a, simde_float16x4_t b, const int lane) | ||
SIMDE_REQUIRE_CONSTANT_RANGE(lane, 0, 1) { | ||
simde_float16x8_t result; | ||
#if defined(SIMDE_ARM_NEON_A32V8_NATIVE) && SIMDE_ARCH_ARM_CHECK(8,3) && \ | ||
(!defined(HEDLEY_GCC_VERSION) || HEDLEY_GCC_VERSION_CHECK(9,0,0)) && \ | ||
(!defined(__clang__) || SIMDE_DETECT_CLANG_VERSION_CHECK(12,0,0)) | ||
SIMDE_CONSTIFY_2_(vcmlaq_rot270_lane_f16, result, (HEDLEY_UNREACHABLE(), result), lane, r, a, b); | ||
#else | ||
simde_float16x8_private | ||
r_ = simde_float16x8_to_private(r), | ||
a_ = simde_float16x8_to_private(a), | ||
b_ = simde_float16x8_to_private(simde_vdupq_n_f16(simde_float16x4_to_private(b).values[lane])); | ||
|
||
#if defined(SIMDE_SHUFFLE_VECTOR_) && !defined(SIMDE_BUG_GCC_100760) | ||
a_.values = SIMDE_SHUFFLE_VECTOR_(16, 8, a_.values, a_.values, 1, 1, 3, 3, 5, 5, 7, 7); | ||
b_.values = SIMDE_SHUFFLE_VECTOR_(16, 8, -b_.values, b_.values, 9, 0, 11, 2, 13, 4, 15, 6); | ||
r_.values += b_.values * a_.values; | ||
#else | ||
SIMDE_VECTORIZE | ||
for (size_t i = 0 ; i < (sizeof(r_.values) / (2 * sizeof(r_.values[0]))) ; i++) { | ||
r_.values[2 * i] += b_.values[2 * i + 1] * a_.values[2 * i + 1]; | ||
r_.values[2 * i + 1] += -(b_.values[2 * i]) * a_.values[2 * i + 1]; | ||
} | ||
#endif | ||
|
||
result = simde_float16x8_from_private(r_); | ||
return result; | ||
#endif | ||
} | ||
#if defined(SIMDE_ARM_NEON_A32V8_ENABLE_NATIVE_ALIASES) | ||
#undef vcmlaq_rot270_lane_f16 | ||
#define vcmlaq_rot270_lane_f16(r, a, b, lane) simde_vcmlaq_rot270_lane_f16(r, a, b, lane) | ||
#endif | ||
|
||
SIMDE_FUNCTION_ATTRIBUTES | ||
simde_float32x4_t | ||
simde_vcmlaq_rot270_lane_f32(simde_float32x4_t r, simde_float32x4_t a, simde_float32x2_t b, const int lane) | ||
SIMDE_REQUIRE_CONSTANT_RANGE(lane, 0, 0) { | ||
#if defined(SIMDE_ARM_NEON_A32V8_NATIVE) && SIMDE_ARCH_ARM_CHECK(8,3) && \ | ||
(!defined(HEDLEY_GCC_VERSION) || HEDLEY_GCC_VERSION_CHECK(9,0,0)) && \ | ||
(!defined(__clang__) || SIMDE_DETECT_CLANG_VERSION_CHECK(12,0,0)) | ||
return vcmlaq_rot270_lane_f32(r, a, b, 0); | ||
#else | ||
simde_float32x4_private | ||
r_ = simde_float32x4_to_private(r), | ||
a_ = simde_float32x4_to_private(a), | ||
b_ = simde_float32x4_to_private(simde_vdupq_n_f32(simde_float32x2_to_private(b).values[lane])); | ||
|
||
#if defined(SIMDE_SHUFFLE_VECTOR_) && !defined(SIMDE_BUG_GCC_100760) | ||
a_.values = SIMDE_SHUFFLE_VECTOR_(32, 16, a_.values, a_.values, 1, 1, 3, 3); | ||
b_.values = SIMDE_SHUFFLE_VECTOR_(32, 16, -b_.values, b_.values, 5, 0, 7, 2); | ||
r_.values += b_.values * a_.values; | ||
#else | ||
SIMDE_VECTORIZE | ||
for (size_t i = 0 ; i < (sizeof(r_.values) / (2 * sizeof(r_.values[0]))) ; i++) { | ||
r_.values[2 * i] += b_.values[2 * i + 1] * a_.values[2 * i + 1]; | ||
r_.values[2 * i + 1] += -(b_.values[2 * i]) * a_.values[2 * i + 1]; | ||
} | ||
#endif | ||
|
||
return simde_float32x4_from_private(r_); | ||
#endif | ||
} | ||
#if defined(SIMDE_ARM_NEON_A32V8_ENABLE_NATIVE_ALIASES) | ||
#undef vcmlaq_rot270_lane_f32 | ||
#define vcmlaq_rot270_lane_f32(r, a, b, lane) simde_vcmlaq_rot270_lane_f32(r, a, b, lane) | ||
#endif | ||
|
||
SIMDE_FUNCTION_ATTRIBUTES | ||
simde_float16x4_t | ||
simde_vcmla_rot270_laneq_f16(simde_float16x4_t r, simde_float16x4_t a, simde_float16x8_t b, const int lane) | ||
SIMDE_REQUIRE_CONSTANT_RANGE(lane, 0, 1) { | ||
simde_float16x4_t result; | ||
#if defined(SIMDE_ARM_NEON_A32V8_NATIVE) && SIMDE_ARCH_ARM_CHECK(8,3) && \ | ||
(!defined(HEDLEY_GCC_VERSION) || HEDLEY_GCC_VERSION_CHECK(9,0,0)) && \ | ||
(!defined(__clang__) || SIMDE_DETECT_CLANG_VERSION_CHECK(12,0,0)) | ||
SIMDE_CONSTIFY_2_(vcmla_rot270_laneq_f16, result, (HEDLEY_UNREACHABLE(), result), lane, r, a, b); | ||
#else | ||
simde_float16x4_private | ||
r_ = simde_float16x4_to_private(r), | ||
a_ = simde_float16x4_to_private(a), | ||
b_ = simde_float16x4_to_private(simde_vdup_n_f16(simde_float16x8_to_private(b).values[lane])); | ||
|
||
#if defined(SIMDE_SHUFFLE_VECTOR_) && !defined(SIMDE_BUG_GCC_100760) | ||
a_.values = SIMDE_SHUFFLE_VECTOR_(16, 4, a_.values, a_.values, 1, 1, 3, 3); | ||
b_.values = SIMDE_SHUFFLE_VECTOR_(16, 4, -b_.values, b_.values, 5, 0, 7, 2); | ||
r_.values += b_.values * a_.values; | ||
#else | ||
SIMDE_VECTORIZE | ||
for (size_t i = 0 ; i < (sizeof(r_.values) / (2 * sizeof(r_.values[0]))) ; i++) { | ||
r_.values[2 * i] += b_.values[2 * i + 1] * a_.values[2 * i + 1]; | ||
r_.values[2 * i + 1] += -(b_.values[2 * i]) * a_.values[2 * i + 1]; | ||
} | ||
#endif | ||
|
||
result = simde_float16x4_from_private(r_); | ||
return result; | ||
#endif | ||
} | ||
#if defined(SIMDE_ARM_NEON_A32V8_ENABLE_NATIVE_ALIASES) | ||
#undef vcmla_rot270_laneq_f16 | ||
#define vcmla_rot270_laneq_f16(r, a, b, lane) simde_vcmla_rot270_laneq_f16(r, a, b, lane) | ||
#endif | ||
|
||
SIMDE_FUNCTION_ATTRIBUTES | ||
simde_float32x2_t | ||
simde_vcmla_rot270_laneq_f32(simde_float32x2_t r, simde_float32x2_t a, simde_float32x4_t b, const int lane) | ||
SIMDE_REQUIRE_CONSTANT_RANGE(lane, 0, 1) { | ||
simde_float32x2_t result; | ||
#if defined(SIMDE_ARM_NEON_A32V8_NATIVE) && SIMDE_ARCH_ARM_CHECK(8,3) && \ | ||
(!defined(HEDLEY_GCC_VERSION) || HEDLEY_GCC_VERSION_CHECK(9,0,0)) && \ | ||
(!defined(__clang__) || SIMDE_DETECT_CLANG_VERSION_CHECK(12,0,0)) | ||
SIMDE_CONSTIFY_2_(vcmla_rot270_laneq_f32, result, (HEDLEY_UNREACHABLE(), result), lane, r, a, b); | ||
#else | ||
simde_float32x2_private | ||
r_ = simde_float32x2_to_private(r), | ||
a_ = simde_float32x2_to_private(a), | ||
b_ = simde_float32x2_to_private(simde_vdup_n_f32(simde_float32x4_to_private(b).values[lane])); | ||
|
||
#if defined(SIMDE_SHUFFLE_VECTOR_) && !defined(SIMDE_BUG_GCC_100760) | ||
a_.values = SIMDE_SHUFFLE_VECTOR_(32, 8, a_.values, a_.values, 1, 1); | ||
b_.values = SIMDE_SHUFFLE_VECTOR_(32, 8, -b_.values, b_.values, 3, 0); | ||
r_.values += b_.values * a_.values; | ||
#else | ||
SIMDE_VECTORIZE | ||
for (size_t i = 0 ; i < (sizeof(r_.values) / (2 * sizeof(r_.values[0]))) ; i++) { | ||
r_.values[2 * i] += b_.values[2 * i + 1] * a_.values[2 * i + 1]; | ||
r_.values[2 * i + 1] += -(b_.values[2 * i]) * a_.values[2 * i + 1]; | ||
} | ||
#endif | ||
|
||
result = simde_float32x2_from_private(r_); | ||
return result; | ||
#endif | ||
} | ||
#if defined(SIMDE_ARM_NEON_A32V8_ENABLE_NATIVE_ALIASES) | ||
#undef vcmla_rot270_laneq_f32 | ||
#define vcmla_rot270_laneq_f32(r, a, b, lane) simde_vcmla_rot270_laneq_f32(r, a, b, lane) | ||
#endif | ||
|
||
SIMDE_FUNCTION_ATTRIBUTES | ||
simde_float16x8_t | ||
simde_vcmlaq_rot270_laneq_f16(simde_float16x8_t r, simde_float16x8_t a, simde_float16x8_t b, const int lane) | ||
SIMDE_REQUIRE_CONSTANT_RANGE(lane, 0, 3) { | ||
simde_float16x8_t result; | ||
#if defined(SIMDE_ARM_NEON_A32V8_NATIVE) && SIMDE_ARCH_ARM_CHECK(8,3) && \ | ||
(!defined(HEDLEY_GCC_VERSION) || HEDLEY_GCC_VERSION_CHECK(9,0,0)) && \ | ||
(!defined(__clang__) || SIMDE_DETECT_CLANG_VERSION_CHECK(12,0,0)) | ||
SIMDE_CONSTIFY_4_(vcmlaq_rot270_laneq_f32, result, (HEDLEY_UNREACHABLE(), result), lane, r, a, b); | ||
#else | ||
simde_float16x8_private | ||
r_ = simde_float16x8_to_private(r), | ||
a_ = simde_float16x8_to_private(a), | ||
b_ = simde_float16x8_to_private(simde_vdupq_n_f16(simde_float16x8_to_private(b).values[lane])); | ||
|
||
#if defined(SIMDE_SHUFFLE_VECTOR_) && !defined(SIMDE_BUG_GCC_100760) | ||
a_.values = SIMDE_SHUFFLE_VECTOR_(16, 8, a_.values, a_.values, 1, 1, 3, 3, 5, 5, 7, 7); | ||
b_.values = SIMDE_SHUFFLE_VECTOR_(16, 8, -b_.values, b_.values, 9, 0, 11, 2, 13, 4, 15, 6); | ||
r_.values += b_.values * a_.values; | ||
#else | ||
SIMDE_VECTORIZE | ||
for (size_t i = 0 ; i < (sizeof(r_.values) / (2 * sizeof(r_.values[0]))) ; i++) { | ||
r_.values[2 * i] += b_.values[2 * i + 1] * a_.values[2 * i + 1]; | ||
r_.values[2 * i + 1] += -(b_.values[2 * i]) * a_.values[2 * i + 1]; | ||
} | ||
#endif | ||
|
||
result = simde_float16x8_from_private(r_); | ||
return result; | ||
#endif | ||
} | ||
#if defined(SIMDE_ARM_NEON_A32V8_ENABLE_NATIVE_ALIASES) | ||
#undef vcmlaq_rot270_laneq_f16 | ||
#define vcmlaq_rot270_laneq_f16(r, a, b, lane) simde_vcmlaq_rot270_laneq_f16(r, a, b, lane) | ||
#endif | ||
|
||
SIMDE_FUNCTION_ATTRIBUTES | ||
simde_float32x4_t | ||
simde_vcmlaq_rot270_laneq_f32(simde_float32x4_t r, simde_float32x4_t a, simde_float32x4_t b, const int lane) | ||
SIMDE_REQUIRE_CONSTANT_RANGE(lane, 0, 1) { | ||
simde_float32x4_t result; | ||
#if defined(SIMDE_ARM_NEON_A32V8_NATIVE) && SIMDE_ARCH_ARM_CHECK(8,3) && \ | ||
(!defined(HEDLEY_GCC_VERSION) || HEDLEY_GCC_VERSION_CHECK(9,0,0)) && \ | ||
(!defined(__clang__) || SIMDE_DETECT_CLANG_VERSION_CHECK(12,0,0)) | ||
SIMDE_CONSTIFY_2_(vcmlaq_rot270_laneq_f32, result, (HEDLEY_UNREACHABLE(), result), lane, r, a, b); | ||
#else | ||
simde_float32x4_private | ||
r_ = simde_float32x4_to_private(r), | ||
a_ = simde_float32x4_to_private(a), | ||
b_ = simde_float32x4_to_private(simde_vdupq_n_f32(simde_float32x4_to_private(b).values[lane])); | ||
|
||
#if defined(SIMDE_SHUFFLE_VECTOR_) && !defined(SIMDE_BUG_GCC_100760) | ||
a_.values = SIMDE_SHUFFLE_VECTOR_(32, 16, a_.values, a_.values, 1, 1, 3, 3); | ||
b_.values = SIMDE_SHUFFLE_VECTOR_(32, 16, -b_.values, b_.values, 5, 0, 7, 2); | ||
r_.values += b_.values * a_.values; | ||
#else | ||
SIMDE_VECTORIZE | ||
for (size_t i = 0 ; i < (sizeof(r_.values) / (2 * sizeof(r_.values[0]))) ; i++) { | ||
r_.values[2 * i] += b_.values[2 * i + 1] * a_.values[2 * i + 1]; | ||
r_.values[2 * i + 1] += -(b_.values[2 * i]) * a_.values[2 * i + 1]; | ||
} | ||
#endif | ||
|
||
result = simde_float32x4_from_private(r_); | ||
return result; | ||
#endif | ||
} | ||
#if defined(SIMDE_ARM_NEON_A32V8_ENABLE_NATIVE_ALIASES) | ||
#undef vcmlaq_rot270_laneq_f32 | ||
#define vcmlaq_rot270_laneq_f32(r, a, b, lane) simde_vcmlaq_rot270_laneq_f32(r, a, b, lane) | ||
#endif | ||
|
||
|
||
SIMDE_END_DECLS_ | ||
HEDLEY_DIAGNOSTIC_POP | ||
|
||
#endif /* !defined(SIMDE_ARM_NEON_CMLA_ROT270_LANE_H) */ |
Oops, something went wrong.