MCPcopy Create free account
hub / github.com/VCVRack/Rack / Vector

Method Vector

include/simd/Vector.hpp:155–157  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

153
154
155inline Vector<float, 4>::Vector(Vector<int32_t, 4> a) {
156 v = _mm_cvtepi32_ps(a.v);
157}
158
159inline Vector<int32_t, 4>::Vector(Vector<float, 4> a) {
160 v = _mm_cvttps_epi32(a.v);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected