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

Function GiStoreFloat32V2

immigration/include/gi_float.h:597–607  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

595}
596
597GI_FORCEINLINE
598void GiStoreFloat32V2(float* Buffer, GI_FLOAT32_V2_t Vector) {
599#if defined(GI_NEON_INTRINSICS)
600 vst1q_f32_x2(Buffer, Vector);
601#else
602 GiStoreFloat32(Buffer, GiGetSubVectorFloat32V2(Vector, 0));
603 GiStoreFloat32(
604 Buffer + GI_SIMD_LEN_BYTE / sizeof(float),
605 GiGetSubVectorFloat32V2(Vector, 1));
606#endif
607}
608
609#if defined(GI_NEON_INTRINSICS)
610#define GISTORELANEFLOAT32(i) \

Callers

nothing calls this directly

Calls 2

vst1q_f32_x2Function · 0.85
GiStoreFloat32Function · 0.85

Tested by

no test coverage detected