Skip to content

Commit 4a81b82

Browse files
author
Vahid Tavanashad
committed
tmp changes
1 parent 624f14f commit 4a81b82

File tree

168 files changed

+8
-64055
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

168 files changed

+8
-64055
lines changed

.github/workflows/conda-package.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
strategy:
3030
fail-fast: false
3131
matrix:
32-
python: ['3.9', '3.10', '3.11', '3.12', '3.13']
32+
python: ['3.13']
3333
os: [ubuntu-22.04, windows-2022]
3434

3535
permissions:
@@ -126,7 +126,7 @@ jobs:
126126
strategy:
127127
fail-fast: false
128128
matrix:
129-
python: ['3.9', '3.10', '3.11', '3.12', '3.13']
129+
python: ['3.13']
130130
os: [ubuntu-latest]
131131

132132
env:
@@ -253,7 +253,7 @@ jobs:
253253
strategy:
254254
fail-fast: false
255255
matrix:
256-
python: ['3.9', '3.10', '3.11', '3.12', '3.13']
256+
python: ['3.13']
257257
os: [windows-2022]
258258

259259
env:
@@ -389,7 +389,7 @@ jobs:
389389
command: |
390390
if ( ${{ matrix.python }} -eq ${{ env.python-ver-test-all-dtypes }} ) {
391391
$env:DPNP_TEST_ALL_INT_TYPES=1
392-
python -m pytest -ra --pyargs ${{ env.package-name }}.tests
392+
python -m pytest -vra --pyargs ${{ env.package-name }}.tests
393393
} else {
394394
python -m pytest -n auto -ra --pyargs ${{ env.package-name }}.tests
395395
}
@@ -402,7 +402,7 @@ jobs:
402402
strategy:
403403
fail-fast: false
404404
matrix:
405-
python: ['3.9', '3.10', '3.11', '3.12', '3.13']
405+
python: ['3.13']
406406
os: [ubuntu-22.04, windows-2022]
407407

408408
runs-on: ${{ matrix.os }}

dpnp/dpnp_utils/dpnp_utils_linearalgebra.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -453,6 +453,8 @@ def _get_result_shape_multiplication(x1, x2, func):
453453
assert func == "matmul"
454454
result_shape += (x1.shape[-2], x2.shape[-1])
455455

456+
if func == "vecmat":
457+
print(x1, x2, result_shape)
456458
return x1, x2, result_shape
457459

458460

@@ -992,6 +994,7 @@ def dpnp_multiplication(
992994
call_flag = "gemm_batch"
993995
res_shape = result_shape
994996

997+
print(call_flag, func)
995998
# dispatch to proper function call
996999
if call_flag == "multiply":
9971000
result = dpnp.multiply(x1, x2)

dpnp/tests/test_absolute.py

Lines changed: 0 additions & 71 deletions
This file was deleted.

dpnp/tests/test_amin_amax.py

Lines changed: 0 additions & 71 deletions
This file was deleted.

dpnp/tests/test_arithmetic.py

Lines changed: 0 additions & 38 deletions
This file was deleted.

dpnp/tests/test_array_api_info.py

Lines changed: 0 additions & 133 deletions
This file was deleted.

0 commit comments

Comments
 (0)