-
Notifications
You must be signed in to change notification settings - Fork 22
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
Fix failing test for dpnp.append
when no fp64 for device
#2034
Merged
Conversation
This file contains 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
antonwolfy
requested review from
npolina4,
vlad-perevezentsev and
vtavana
as code owners
September 13, 2024 15:05
View rendered docs @ https://intelpython.github.io/dpnp/index.html |
vtavana
approved these changes
Sep 14, 2024
github-actions bot
added a commit
that referenced
this pull request
Sep 14, 2024
* Fix test for dpnp.append with was failing with no fp64 support * Update docstring for dpnp.append and dpnp.asarray_chkfinite --------- Co-authored-by: vtavana <[email protected]> 1cba68c
antonwolfy
added a commit
that referenced
this pull request
Sep 14, 2024
* Fix test for dpnp.append with was failing with no fp64 support * Update docstring for dpnp.append and dpnp.asarray_chkfinite --------- Co-authored-by: vtavana <[email protected]>
This was referenced Sep 14, 2024
Merged
antonwolfy
added a commit
that referenced
this pull request
Sep 16, 2024
* Fix failing test for `dpnp.append` when no fp64 for device (#2034) * Fix test for dpnp.append with was failing with no fp64 support * Update docstring for dpnp.append and dpnp.asarray_chkfinite --------- Co-authored-by: vtavana <[email protected]> * Update CHANGELOG --------- Co-authored-by: vtavana <[email protected]>
antonwolfy
added a commit
that referenced
this pull request
Sep 16, 2024
* Fix failing test for `dpnp.append` when no fp64 for device (#2034) * Fix test for dpnp.append with was failing with no fp64 support * Update docstring for dpnp.append and dpnp.asarray_chkfinite --------- Co-authored-by: vtavana <[email protected]> * Update CHANGELOG * Use Pybind11 2.13.6 to build dpnp (#2041) Co-authored-by: vtavana <[email protected]> * Update CHANGELOG --------- Co-authored-by: vtavana <[email protected]>
antonwolfy
added a commit
that referenced
this pull request
Sep 16, 2024
* Fix failing test for `dpnp.append` when no fp64 for device (#2034) * Fix test for dpnp.append with was failing with no fp64 support * Update docstring for dpnp.append and dpnp.asarray_chkfinite --------- Co-authored-by: vtavana <[email protected]> * Update CHANGELOG * Use Pybind11 2.13.6 to build dpnp (#2041) Co-authored-by: vtavana <[email protected]> * Update CHANGELOG * Use `INTEL_MKL_VERSION` flag (#2035) * use MKL_VERSION flag * update CHANGELOG.md * Backport gh-2030 (#2046) * Implement `dpnp.rot90` and `dpnp.resize` (#2030) * add rot90 and resize * fix docstring * address comments --------- Co-authored-by: Anton <[email protected]> * Update changelog --------- Co-authored-by: vtavana <[email protected]> --------- Co-authored-by: vtavana <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
The PR proposes to implement a fix for test from
tests/third_party/cupy/manipulation_tests/test_add_remove.py
scope failing with a device without fp64 support.Additionally formatting issues in description of
dpnp.append
anddpnp.asarray_chkfinite
were resolved anddpnp.asarray_chkfinite
was moved indpnp/dpnp_iface_manipulation.py
file to keep lexicographical order.