-
Notifications
You must be signed in to change notification settings - Fork 23
Add implementation of dpnp.ndarray.tolist method
#2652
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
Changes from 7 commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
d89b4ac
Add implementation of dpnp.ndarray.tolist method
antonwolfy 89f7cba
Enable third party tests
antonwolfy f1db9e8
Add more tests coverage
antonwolfy e6ee504
Add io.rst page with Input and Output API references
antonwolfy f148d72
Rename test
antonwolfy c6c83b4
Fix typo in the example text
antonwolfy 2580dfb
Add PR to the changelog
antonwolfy c6b8bc7
Fix typos in the examples
antonwolfy fe24252
Merge branch 'master' into add-tolist-method
antonwolfy 72586c0
Merge branch 'master' into add-tolist-method
antonwolfy File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,76 @@ | ||
| .. currentmodule:: dpnp | ||
|
|
||
| Input and output | ||
| ================ | ||
|
|
||
| .. hint:: `NumPy API Reference: Input and output <https://numpy.org/doc/stable/reference/routines.io.html>`_ | ||
|
|
||
| .. NumPy binary files (npy, npz) | ||
| .. ----------------------------- | ||
| .. .. autosummary:: | ||
| .. :toctree: generated/ | ||
| .. :nosignatures: | ||
|
|
||
| .. load | ||
| .. save | ||
| .. savez | ||
| .. savez_compressed | ||
| .. lib.npyio.NpzFile | ||
|
|
||
| .. The format of these binary file types is documented in | ||
| .. :py:mod:`numpy.lib.format` | ||
|
|
||
| Text files | ||
| ---------- | ||
| .. autosummary:: | ||
| :toctree: generated/ | ||
| :nosignatures: | ||
|
|
||
| loadtxt | ||
| savetxt | ||
| genfromtxt | ||
| fromregex | ||
| fromstring | ||
| ndarray.tofile | ||
| ndarray.tolist | ||
|
|
||
| Raw binary files | ||
| ---------------- | ||
|
|
||
| .. autosummary:: | ||
| :toctree: generated/ | ||
| :nosignatures: | ||
|
|
||
| fromfile | ||
| ndarray.tofile | ||
|
|
||
| .. String formatting | ||
| .. ----------------- | ||
| .. .. autosummary:: | ||
| .. :toctree: generated/ | ||
| .. :nosignatures: | ||
|
|
||
| .. array2string | ||
| .. array_repr | ||
| .. array_str | ||
| .. format_float_positional | ||
| .. format_float_scientific | ||
|
|
||
| .. Text formatting options | ||
| .. ----------------------- | ||
| .. .. autosummary:: | ||
| .. :toctree: generated/ | ||
| .. :nosignatures: | ||
|
|
||
| .. set_printoptions | ||
| .. get_printoptions | ||
| .. printoptions | ||
|
|
||
| Base-n representations | ||
| ---------------------- | ||
| .. autosummary:: | ||
| :toctree: generated/ | ||
| :nosignatures: | ||
|
|
||
| binary_repr | ||
| base_repr |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -18,6 +18,7 @@ These functions cover a subset of | |
| exceptions | ||
| fft | ||
| functional | ||
| io | ||
| indexing | ||
| linalg | ||
| logic | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.