Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/numpy/numpy
/ intp_abs
Function
intp_abs
numpy/core/src/multiarray/nditer_constr.c:2271–2275 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
2269
}
2270
2271
static inline npy_intp
2272
intp_abs(npy_intp x)
2273
{
2274
return (x < 0) ? -x : x;
2275
}
2276
2277
static void
2278
npyiter_find_best_axis_ordering(NpyIter *iter)
Callers
1
npyiter_find_best_axis_ordering
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected