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

IntelPython / dpnp / 28177613047
78%

Build:
DEFAULT BRANCH: master
Ran 25 Jun 2026 03:36PM UTC
Jobs 1
Files 258
Run time 1min
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

25 Jun 2026 02:30PM UTC coverage: 78.069%. Remained the same
28177613047

push

github

web-flow
Fix `dpnp.mgrid`/`dpnp.ogrid` inconsistency for complex steps with non-integer magnitude (#2971)

For a complex step, the integer part of its magnitude is the number of
points to generate (start and stop inclusive). The single-slice and
tuple-of-slices code paths disagreed when the step magnitude was **not**
an integer (e.g. `2.5j`):
- the tuple path used `int(abs(step)) - 1` as the divisor (correct),
while
- the single-slice path used the float magnitude `abs(step) - 1` as the
divisor.

As a result `dpnp.mgrid[0:10:2.5j]` and `dpnp.mgrid[0:10:2.5j,]`
produced different arrays, and the single-slice form disagreed with
NumPy.

```python
>>> dpnp.mgrid[0:10:2.5j]      # before: [0. , 6.667]   after: [ 0., 10.]
>>> dpnp.mgrid[0:10:2.5j,][0]  # always: [ 0., 10.]     (matches NumPy)
```

1532 of 2854 branches covered (53.68%)

Branch coverage included in aggregate %.

2 of 2 new or added lines in 1 file covered. (100.0%)

25974 of 32379 relevant lines covered (80.22%)

8029.48 hits per line

Jobs
ID Job ID Ran Files Coverage
1 28177613047.1 25 Jun 2026 03:36PM UTC 258
78.07
GitHub Action Run
Source Files on build 28177613047
  • Tree
  • List 258
  • Changed 1
  • Source Changed 1
  • Coverage Changed 1
Coverage ∆ File Lines Relevant Covered Missed Hits/Line Branch Hits Branch Misses
  • Back to Repo
  • Github Actions Build #28177613047
  • 09ff0a8a on github
  • Prev Build on master (#28126566762)
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