Skip to content

Commit 098832c

Browse files
committed
address comments
1 parent 7367ea3 commit 098832c

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

dpnp/dpnp_iface_trigonometric.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1103,9 +1103,9 @@ def logaddexp(
11031103
>>> prob2 = np.log(np.array(2.5e-50))
11041104
>>> prob12 = np.logaddexp(prob1, prob2)
11051105
>>> prob12
1106-
-113.87649168120691
1106+
array(-113.87649168)
11071107
>>> np.exp(prob12)
1108-
3.5000000000000057e-50
1108+
array(3.5e-50)
11091109
11101110
"""
11111111

tests/test_sycl_queue.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -373,7 +373,7 @@ def test_proj(device):
373373
"logaddexp",
374374
[[-1, 2, 5, 9]],
375375
[[4, -3, 2, -8]],
376-
),
376+
),
377377
pytest.param(
378378
"matmul", [[1.0, 0.0], [0.0, 1.0]], [[4.0, 1.0], [1.0, 2.0]]
379379
),

tests/test_usm_type.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -374,8 +374,8 @@ def test_1in_1out(func, data, usm_type):
374374
pytest.param(
375375
"logaddexp",
376376
[[-1, 2, 5, 9]],
377-
[[4, -3, 2, -8]],
378-
),
377+
[[4, -3, 2, -8]],
378+
),
379379
pytest.param(
380380
"maximum",
381381
[[0.0, 1.0, 2.0]],

0 commit comments

Comments
 (0)