8000 ENH: Add array API standard v2022.12 support to numpy.array_api by charris · Pull Request #23955 · numpy/numpy · GitHub
[go: up one dir, main page]

Skip to content

ENH: Add array API standard v2022.12 support to numpy.array_api #23955

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

Merged
merged 15 commits into from
Jun 15, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add complex dtypes to the array_api top-level namespace
  • Loading branch information
asmeurer authored and charris committed Jun 15, 2023
commit b2ca2c552e116b29e794902e4d2a1a6ff63b4e3a
2 changes: 2 additions & 0 deletions numpy/array_api/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,8 @@
uint64,
float32,
float64,
complex64,
complex128,
bool,
)

Expand Down
0