/ 128-bit store over 64-bit stride
| 175 | |
| 176 | //// 128-bit store over 64-bit stride |
| 177 | NPY_FINLINE void npyv_storen2_u64(npy_uint64 *ptr, npy_intp stride, npyv_u64 a) |
| 178 | { |
| 179 | npyv_storel_u64(ptr, a); |
| 180 | npyv_storeh_u64(ptr + stride, a); |
| 181 | } |
| 182 | NPY_FINLINE void npyv_storen2_s64(npy_int64 *ptr, npy_intp stride, npyv_s64 a) |
| 183 | { npyv_storen2_u64((npy_uint64*)ptr, stride, a); } |
| 184 | NPY_FINLINE void npyv_storen2_f64(double *ptr, npy_intp stride, npyv_f64 a) |
no outgoing calls
no test coverage detected