Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/dask/dask
/ _sqrt
Function
_sqrt
dask/array/reductions.py:690–693 ·
view source on GitHub ↗
(a)
Source
from the content-addressed store, hash-verified
688
689
690
def
_sqrt(a):
691
if
isinstance(a, np.ma.masked_array) and not a.shape and a.mask.all():
692
return
np.ma.masked
693
return
np.sqrt(a)
694
695
696
def
safe_sqrt(a):
Callers
1
safe_sqrt
Function · 0.85
Calls
1
all
Method · 0.45
Tested by
no test coverage detected