MCPcopy Create free account
hub / github.com/MegEngine/MegCC / GiStoreFloat16

Function GiStoreFloat16

immigration/include/gi_float16.h:93–100  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

91}
92
93GI_FORCEINLINE
94void GiStoreFloat16(gi_float16_t* Buffer, GI_FLOAT16_t Vector) {
95#if defined(GI_NEON_INTRINSICS)
96 vst1q_f16(Buffer, Vector);
97#elif defined(GI_RVV_INTRINSICS)
98 vse16_v_f16m1(Buffer, Vector, GI_SIMD_LEN_BYTE / sizeof(gi_float16_t));
99#endif
100}
101
102GI_FORCEINLINE
103GI_FLOAT16_t GiAddFloat16(GI_FLOAT16_t Vector1, GI_FLOAT16_t Vector2) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected