Skip to content

Commit 3dd6429

Browse files
Merge move_usm_ndarray into move_dpctl_ext_to_dpnp_tensor
2 parents 7c90dc7 + 6ea695a commit 3dd6429

2 files changed

Lines changed: 2 additions & 7 deletions

File tree

.github/workflows/generate_coverage.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
name: Generate coverage and push to Coveralls.io
1212

1313
runs-on: ubuntu-latest
14-
timeout-minutes: 120
14+
timeout-minutes: 150
1515

1616
permissions:
1717
# Needed to cancel any previous runs that are not completed for a given workflow
@@ -146,7 +146,7 @@ jobs:
146146
uses: nick-fields/retry@ce71cc2ab81d554ebbe88c79ab5975992d79ba08 # v3.0.2
147147
with:
148148
shell: bash
149-
timeout_minutes: 90
149+
timeout_minutes: 120
150150
max_attempts: 5
151151
retry_on: error
152152
command: |

dpnp/__init__.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828

2929
import os
3030
import sys
31-
import warnings
3231

3332
mypath = os.path.dirname(os.path.realpath(__file__))
3433

@@ -61,10 +60,6 @@
6160
[os.getenv("PATH", ""), dll_path]
6261
)
6362

64-
# Borrowed from DPCTL
65-
with warnings.catch_warnings():
66-
warnings.simplefilter("ignore", DeprecationWarning)
67-
from dpnp.tensor import __array_api_version__, DLDeviceType
6863

6964
from .dpnp_array import dpnp_array as ndarray
7065
from .dpnp_array_api_info import __array_namespace_info__

0 commit comments

Comments
 (0)