Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/KnowingNothing/MatmulTutorial
/ __init__
Method
__init__
cutlass.py/fast_math.py:35–36 ·
view source on GitHub ↗
(self, divisor)
Source
from the content-addressed store, hash-verified
33
34
class
FastDivmodU64:
35
def
__init__(self, divisor):
36
self.divisor = divisor
37
38
def
divmod(self, x):
39
return
(x // self.divisor, x % self.divisor)
Callers
nothing calls this directly
Calls
no outgoing calls
Tested by
no test coverage detected