MCPcopy Create free account
hub / github.com/numpy/numpy / npyv_lut32_u32

Function npyv_lut32_u32

numpy/core/src/common/simd/sse/memory.h:737–738  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

735 return npyv_set_f32(table[i0], table[i1], table[i2], table[i3]);
736}
737NPY_FINLINE npyv_u32 npyv_lut32_u32(const npy_uint32 *table, npyv_u32 idx)
738{ return npyv_reinterpret_u32_f32(npyv_lut32_f32((const float*)table, idx)); }
739NPY_FINLINE npyv_s32 npyv_lut32_s32(const npy_int32 *table, npyv_u32 idx)
740{ return npyv_reinterpret_s32_f32(npyv_lut32_f32((const float*)table, idx)); }
741

Callers

nothing calls this directly

Calls 1

npyv_lut32_f32Function · 0.70

Tested by

no test coverage detected