Commit 6a81e55
authored
fix issues when running tests with all integer dtypes on GPU w/o support for fp64 (#2430)
The following tests fails when running the test suite with all integer
dtypes included on a GPU device that does not support fp64.
FAILED dpnp/tests/test_linalg.py::TestCond::test_basic
FAILED dpnp/tests/test_linalg.py::TestSvd::test_svd
FAILED dpnp/tests/test_linalg.py::TestPinv::test_pinv
FAILED
dpnp/tests/third_party/cupy/creation_tests/test_ranges.py::TestRanges::test_linspace_mixed_start_stop2
FAILED
dpnp/tests/third_party/cupy/math_tests/test_explog.py::TestExplog::test_logaddexp2
FAILED
dpnp/tests/third_party/cupy/math_tests/test_trigonometric.py::TestUnwrap::test_unwrap_1dim_with_discont_and_period
FAILED
dpnp/tests/third_party/cupy/math_tests/test_trigonometric.py::TestUnwrap::test_unwrap_1dim_with_period
This PR fixes them all.1 parent 4d2be8c commit 6a81e55
File tree
4 files changed
+27
-11
lines changed- dpnp/tests
- third_party/cupy
- creation_tests
- math_tests
4 files changed
+27
-11
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
311 | 311 | | |
312 | 312 | | |
313 | 313 | | |
314 | | - | |
| 314 | + | |
315 | 315 | | |
316 | 316 | | |
317 | 317 | | |
| |||
2841 | 2841 | | |
2842 | 2842 | | |
2843 | 2843 | | |
2844 | | - | |
2845 | | - | |
2846 | | - | |
2847 | | - | |
| 2844 | + | |
| 2845 | + | |
2848 | 2846 | | |
2849 | 2847 | | |
2850 | 2848 | | |
| |||
3019 | 3017 | | |
3020 | 3018 | | |
3021 | 3019 | | |
3022 | | - | |
3023 | | - | |
3024 | | - | |
3025 | | - | |
| 3020 | + | |
| 3021 | + | |
3026 | 3022 | | |
3027 | 3023 | | |
3028 | 3024 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
229 | 229 | | |
230 | 230 | | |
231 | 231 | | |
232 | | - | |
| 232 | + | |
233 | 233 | | |
234 | 234 | | |
235 | 235 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
16 | 16 | | |
17 | 17 | | |
18 | 18 | | |
| 19 | + | |
| 20 | + | |
19 | 21 | | |
20 | | - | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
21 | 25 | | |
22 | 26 | | |
23 | 27 | | |
| |||
Lines changed: 16 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
| 3 | + | |
| 4 | + | |
3 | 5 | | |
4 | 6 | | |
5 | 7 | | |
| |||
76 | 78 | | |
77 | 79 | | |
78 | 80 | | |
| 81 | + | |
| 82 | + | |
| 83 | + | |
| 84 | + | |
| 85 | + | |
| 86 | + | |
| 87 | + | |
79 | 88 | | |
80 | 89 | | |
81 | 90 | | |
82 | 91 | | |
83 | 92 | | |
84 | 93 | | |
| 94 | + | |
| 95 | + | |
| 96 | + | |
| 97 | + | |
| 98 | + | |
| 99 | + | |
| 100 | + | |
85 | 101 | | |
86 | 102 | | |
87 | 103 | | |
| |||
0 commit comments