Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/conda-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ env:
test_bitwise.py
test_copy.py
test_counting.py
test_dparray.py
test_extensions.py
test_fft.py
test_flat.py
Expand All @@ -37,6 +36,7 @@ env:
test_mathematical.py
test_mixins.py
test_nanfunctions.py
test_ndarray.py
test_outer.py
test_product.py
test_random_state.py
Expand Down
2 changes: 1 addition & 1 deletion doc/reference/sorting.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Sorting
dpnp.argpartition

.. seealso::
:func:`dpnp.dparray.sort`
:func:`dpnp.ndarray.sort`

Searching
---------
Expand Down
3 changes: 0 additions & 3 deletions dpnp/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

function(build_dpnp_cython_ext _trgt _src _dest)
set(options SYCL)
cmake_parse_arguments(BUILD_DPNP_EXT "${options}" "" "" ${ARGN})
Expand Down Expand Up @@ -53,8 +52,6 @@ function(build_dpnp_cython_ext_with_backend _trgt _src _dest)
endif()
endfunction()


build_dpnp_cython_ext_with_backend(dparray ${CMAKE_CURRENT_SOURCE_DIR}/dparray.pyx dpnp)
add_subdirectory(backend)
add_subdirectory(backend/extensions/blas)
add_subdirectory(backend/extensions/lapack)
Expand Down
52 changes: 0 additions & 52 deletions dpnp/dparray.pxd

This file was deleted.

Loading