Skip to content

Commit 124303c

Browse files
authored
Merge branch 'master' into reuse_floor_divide_func
2 parents 93a0e2a + f294dfd commit 124303c

32 files changed

+2181
-1068
lines changed

.github/workflows/build-sphinx.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ jobs:
2727

2828
- name: Free Disk Space (Ubuntu)
2929
uses: jlumbroso/free-disk-space@main
30+
with:
31+
docker-images: false
3032

3133
- name: Install Intel repository
3234
run: |

.github/workflows/conda-package.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,10 @@ 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
26+
third_party/cupy/math_tests/test_trigonometric.py
2427
third_party/cupy/sorting_tests/test_sort.py
2528
VER_JSON_NAME: 'version.json'
2629
VER_SCRIPT1: "import json; f = open('version.json', 'r'); j = json.load(f); f.close(); "
@@ -350,7 +353,7 @@ jobs:
350353
run:
351354
shell: ${{ matrix.os == 'windows-latest' && 'cmd /C CALL {0}' || 'bash -l {0}' }}
352355

353-
continue-on-error: false
356+
continue-on-error: true
354357

355358
if: |
356359
(github.repository == 'IntelPython/dpnp') &&

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)