8000 NEP: Adjust NEP-35 to make it more user-accessible by pentschev · Pull Request #17093 · numpy/numpy · GitHub
[go: up one dir, main page]

Skip to content

NEP: Adjust NEP-35 to make it more user-accessible #17093

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 21 commits into from
Sep 7, 2020
Merged
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
7d7b46c
NEP: Adjust NEP-35 to make it more user-accessible
pentschev Aug 14, 2020
9b660e4
NEP: Simplify NEP-35 further with reviewer's suggestions
pentschev Aug 17, 2020
68fd054
Update doc/neps/nep-0035-array-creation-dispatch-with-array-function.rst
pentschev Aug 19, 2020
61dcb63
Update doc/neps/nep-0035-array-creation-dispatch-with-array-function.rst
pentschev Aug 19, 2020
3cf7b6b
Update doc/neps/nep-0035-array-creation-dispatch-with-array-function.rst
pentschev Aug 19, 2020
52d9c74
Update doc/neps/nep-0035-array-creation-dispatch-with-array-function.rst
pentschev Aug 19, 2020
615f19f
Update doc/neps/nep-0035-array-creation-dispatch-with-array-function.rst
pentschev Aug 19, 2020
69e3e71
NEP: Improve NEP-35 abstract per @mattip's suggestion
pentschev Aug 19, 2020
cde3543
Update doc/neps/nep-0035-array-creation-dispatch-with-array-function.rst
pentschev Aug 19, 2020
1017007
Update doc/neps/nep-0035-array-creation-dispatch-with-array-function.rst
pentschev Aug 19, 2020
a82cc4b
NEP: Move NumPy users comment to top of NEP-35 Usage and Impact
pentschev Aug 19, 2020
17620c2
Update doc/neps/nep-0035-array-creation-dispatch-with-array-function.rst
pentschev Aug 19, 2020
f1d1562
Update doc/neps/nep-0035-array-creation-dispatch-with-array-function.rst
pentschev Aug 19, 2020
57d6bab
Update doc/neps/nep-0035-array-creation-dispatch-with-array-function.rst
pentschev Aug 19, 2020
67c9733
Update doc/neps/nep-0035-array-creation-dispatch-with-array-function.rst
pentschev Aug 19, 2020
974c023
Update doc/neps/nep-0035-array-creation-dispatch-with-array-function.rst
pentschev Aug 19, 2020
b5f5577
NEP: Clarify NEP-35 C implementation details.
pentschev Aug 19, 2020
2e30534
NEP: Clarify Dask intent with `my_dask_pad` function name
pentschev Aug 19, 2020
3d527ea
NEP: Improve grammar on NEP-35 reference to Dask's objects
pentschev Aug 19, 2020
b6f2c16
NEP: Fix some grammar and formatting in NEP-35
pentschev Aug 19, 2020
57f78df
ENH: Clarifies meta_from_array function in NEP-35
pentschev Aug 19, 2020
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
Update doc/neps/nep-0035-array-creation-dispatch-with-array-function.rst
Co-authored-by: Chunlin <fangchunlin@huawei.com>
  • Loading branch information
pentschev and Qiyu8 authored Aug 19, 2020
commit 615f19ffe653829ed4709cae65d66c0b7b7c2e2e
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ To enable proper identification of the array type we use Dask's utility function
function is primarily targeted at the library's internal usage to ensure chunks
are created with correct types. Without the ``like=`` argument, it would be
impossible to ensure ``my_pad`` creates a padding array with a type matching
that of the input array, which would cause cause a ``TypeError`` exception to
that of the input array, which would cause a ``TypeError`` exception to
be raised by CuPy, as discussed above would happen to the CuPy case alone.

Current NumPy users who don't use other arrays from downstream libraries should
Expand Down
0