8000 ENH: add inner loop functions for indexed loops and use them in ufunc_at by mattip · Pull Request #89 · mattip/numpy · GitHub
[go: up one dir, main page]

Skip to content

ENH: add inner loop functions for indexed loops and use them in ufunc_at #89

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 12 commits into from
Prev Previous commit
Next Next commit
ENH: update and sync the public API
  • Loading branch information
mattip committed Jan 31, 2023
commit be6417316c19eb59ce2d844cb93b331007430a72
3 changes: 2 additions & 1 deletion numpy/core/include/numpy/experimental_dtype_api.h
Original file line number Diff line number Diff line change
Expand Up @@ -311,6 +311,7 @@ typedef NPY_CASTING (resolve_descriptors_function)(
#define NPY_METH_contiguous_loop 5
#define NPY_METH_unaligned_strided_loop 6
#define NPY_METH_unaligned_contiguous_loop 7
#define NPY_METH_contiguous_indexed_loop 8


typedef struct {
Expand Down Expand Up @@ -488,7 +489,7 @@ PyArray_GetDefaultDescr(PyArray_DTypeMeta *DType)
*/
#if !defined(NO_IMPORT) && !defined(NO_IMPORT_ARRAY)

#define __EXPERIMENTAL_DTYPE_VERSION 6
#define __EXPERIMENTAL_DTYPE_VERSION 7

static int
import_experimental_dtype_api(int version)
Expand Down
0