Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/KnowingNothing/MatmulTutorial
/ _abs
Function
_abs
include/common.h:72–74 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
70
71
template <class DType>
72
HOST_DEVICE constexpr DType _abs(DType a) {
73
return a < DType(0) ? -a : a;
74
}
75
76
template <class DType>
77
HOST_DEVICE constexpr DType _max(DType a, DType b) {
Callers
1
assert_allclose
Function · 0.85
Calls
1
DType
Class · 0.85
Tested by
no test coverage detected