Sergei Shalnov

Results 23 issues of Sergei Shalnov

dpnp/backend/examples/example_bs.cpp can not be compiled because interface of dpnp_divide_c has changed

run by ``` export DPNP_BACKEND_TESTS_ENABLE=1 ./0.build.sh ``` main backend files compile options looks like: ``` dpcpp -DDPNP_LOCAL_QUEUE=1 -DMKL_ILP64=1 -DONEDPL_USE_PREDEFINED_POLICIES=0 -DPSTL_USE_PARALLEL_POLICIES=0 -D_FORTIFY_SOURCE=2 -D_GLIBCXX_USE_TBB_PAR_BACKEND=0 -O3 -DNDEBUG -fPIC -W -Wextra -Wshadow -Wall -Wstrict-prototypes...

bug

Need to implement `random` module in the project. Currently, it implemented in Python. Need to implement it in Cython and cover following functionality https://docs.scipy.org/doc/numpy-1.13.0/reference/routines.random.html ### Simple random data - [x]...

enhancement

Need to implement Ci test stage with run all available test from a test system including test are marked as "skipped". The purpose of this - guarantee test system can...

enhancement

``` tests/third_party/cupy/indexing_tests/test_generate.py::TestUnravelIndex::test_invalid_order FAILED tests/third_party/cupy/indexing_tests/test_generate.py::TestRavelMultiIndex::test_basic Traceback (most recent call last): File "dpnp/dpnp_utils/dpnp_algo_utils.pyx", line 117, in dpnp.dpnp_utils.dpnp_algo_utils.checker_throw_type_error raise TypeError(f"{ERROR_PREFIX} in function {function_name}() type '{given_type}' is not supported") TypeError: DPNP error: in function...

bug

``` tests/third_party/cupy/creation_tests/test_basic.py::TestBasic::test_zeros_strides Traceback (most recent call last): File "dpnp/dpnp_utils/dpnp_algo_utils.pyx", line 117, in dpnp.dpnp_utils.dpnp_algo_utils.checker_throw_type_error raise TypeError(f"{ERROR_PREFIX} in function {function_name}() type '{given_type}' is not supported") TypeError: DPNP error: in function dpnp_dtype_to_DPNPFuncType() type...

bug

Currently libtbb.so used for the C++ backend library. Need to try to replace it with sequential library (performance sensitive).

Need to implement following function in mathematical module ### Trigonometric functions - [x] sin(x, /[, out, where, casting, order, ...]) Trigonometric sine, element-wise. - [x] cos(x, /[, out, where, casting,...

enhancement

Need to implement following functions as described here [Linear algebra](https://numpy.org/devdocs/reference/routines.linalg.html) ### Matrix and vector products - [x] dot(a, b[, out]) Dot product of two arrays. - [x] linalg.multi_dot(arrays, *[, out])...

enhancement