Skip to content

Commit f49da0e

Browse files
Improve dpnp.log() implementation (#1469)
* Improve dpnp.log() implementation * Added a test with bool type * Removed excess code from the backend * Fix faults in tests * Added missing dot at the end of exception text Co-authored-by: vlad-perevezentsev <[email protected]> * Fixed typos in docstring * Fixed return type in docstring --------- Co-authored-by: vlad-perevezentsev <[email protected]>
1 parent b240844 commit f49da0e

19 files changed

+958
-422
lines changed

.github/workflows/conda-package.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@ env:
2020
test_random_state.py
2121
test_sort.py
2222
test_special.py
23+
test_umath.py
2324
test_usm_type.py
25+
third_party/cupy/math_tests/test_explog.py
2426
third_party/cupy/sorting_tests/test_sort.py
2527
VER_JSON_NAME: 'version.json'
2628
VER_SCRIPT1: "import json; f = open('version.json', 'r'); j = json.load(f); f.close(); "

dpnp/backend/extensions/vm/CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
set(python_module_name _vm_impl)
2828
pybind11_add_module(${python_module_name} MODULE
2929
vm_py.cpp
30-
div.cpp
3130
)
3231

3332
if (WIN32)

0 commit comments

Comments
 (0)