• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

IntelPython / dpnp / 28237610950
78%

Build:
DEFAULT BRANCH: master
Ran 26 Jun 2026 01:29PM UTC
Jobs 1
Files 258
Run time 2min
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

26 Jun 2026 12:20PM UTC coverage: 78.073% (+0.002%) from 78.071%
28237610950

push

github

web-flow
Deprecate setting the `shape` attribute of `dpnp.ndarray` and `dpnp.tensor.usm_ndarray` (#2967)

Setting the array shape in place via the `shape` attribute (`a.shape =
...`) is now **deprecated** for both `dpnp.ndarray` and
`dpnp.tensor.usm_ndarray`. Assigning to `.shape` emits a
`DeprecationWarning` while preserving the existing behavior for now.

This aligns `dpnp` with NumPy 2.5, which deprecated the same in-place
shape assignment.

Users should reshape arrays with `dpnp.reshape` / `dpnp.tensor.reshape`
(or the `reshape` method) instead:

```python
# Deprecated
a.shape = (3, 8)

# Preferred
a = dpnp.reshape(a, (3, 8))
```

1532 of 2854 branches covered (53.68%)

Branch coverage included in aggregate %.

4 of 4 new or added lines in 2 files covered. (100.0%)

1 existing line in 1 file now uncovered.

25980 of 32385 relevant lines covered (80.22%)

8027.34 hits per line

Coverage Regressions

Lines Coverage ∆ File
1
74.2
0.09% dpnp/tensor/_usmarray.pyx
Jobs
ID Job ID Ran Files Coverage
1 28237610950.1 26 Jun 2026 01:29PM UTC 258
78.07
GitHub Action Run
Source Files on build 28237610950
  • Tree
  • List 258
  • Changed 9
  • Source Changed 9
  • Coverage Changed 6
Coverage ∆ File Lines Relevant Covered Missed Hits/Line Branch Hits Branch Misses
  • Back to Repo
  • Github Actions Build #28237610950
  • f79adfd0 on github
  • Prev Build on master (#28230601268)
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc