We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a4d14f commit 915adf7Copy full SHA for 915adf7
dpnp/dpnp_iface_trigonometric.py
@@ -518,7 +518,7 @@ def exp(x1):
518
if not isinstance(x1, dparray):
519
pass
520
else:
521
- dpnp_exp(x1)
+ return dpnp_exp(x1)
522
523
return call_origin(numpy.exp, x1)
524
@@ -666,7 +666,7 @@ def log(x1):
666
667
668
669
- dpnp_log(x1)
+ return dpnp_log(x1)
670
671
return call_origin(numpy.log, x1)
672
0 commit comments