dpnp icon indicating copy to clipboard operation
dpnp copied to clipboard

Data Parallel Extension for NumPy

Results 159 dpnp issues
Sort by recently updated
recently updated
newest added

Test `tests/third_party/cupy/creation_tests/test_ranges.py::TestRanges::test_arange9` fails with `Fatal Python error: Aborted`. Looks like that issue is in provided dtype and ValueError is expected: ``` def test_arange9(self): for xp in (numpy, cupy): with pytest.raises(ValueError):...

enhancement

Tests fail with `Fatal Python error: Aborted`. ``` tests/third_party/cupy/linalg_tests/test_product.py::TestDot_param_36_{shape=((0, 3), (3, 4)), trans_a=True, trans_b=True}::test_dot tests/third_party/cupy/linalg_tests/test_product.py::TestDot_param_36_{shape=((0, 3), (3, 4)), trans_a=True, trans_b=True}::test_dot_with_out tests/third_party/cupy/linalg_tests/test_product.py::TestDot_param_37_{shape=((0, 3), (3, 4)), trans_a=True, trans_b=False}::test_dot tests/third_party/cupy/linalg_tests/test_product.py::TestDot_param_37_{shape=((0, 3), (3, 4)),...

bug

need to implement CI check for spelling in all files in the project. It might be something similar to code style check at first step

``` pytest tests/third_party/cupy/math_tests/test_arithmetic.py -v -s ... tests/third_party/cupy/math_tests/test_arithmetic.py::TestArithmeticUnary_param_0_{arg1=array([[2., 3., 4.], [5., 6., 7.]], dtype=float32), name='reciprocal'}::test_unary PASSED tests/third_party/cupy/math_tests/test_arithmetic.py::TestArithmeticUnary_param_1_{arg1=array([[2., 3., 4.], [5., 6., 7.]]), name='reciprocal'}::test_unary PASSED tests/third_party/cupy/math_tests/test_arithmetic.py::TestArithmeticUnary_param_2_{arg1=array([[2, 3, 4], [5, 6, 7]], dtype=int32),...

bug

Implement build procedure fir two types of documentation: - Python interface documentation build - C++ backend library doxygen documentation build

documentation

Need to implement following functions as described here [Array creation routines](https://numpy.org/doc/stable/reference/routines.array-creation.html) ### Ones and zeros - [x] empty(shape[, dtype, order]) Return a new array of given shape and type, without...

enhancement

Need to implement performance testing. - It should be easy to use for developer - like running regular test system. - Output must be readable and ready to be pasted...

Implement Mac OS build

Need to implement a command to spell check of the text in sources. - might looks like `python ./setup.py spell`

need to check and implement if nessesary - debug build type by commands like `python ./setup.py build_ext --debug` or `python ./setup.py build_clib --debug` or `python ./setup.py build --debug` etc -...