Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/SLDGroup/EMCAD
/ gcd
Function
gcd
lib/decoders.py:10–13 ·
view source on GitHub ↗
(a, b)
Source
from the content-addressed store, hash-verified
8
9
10
def
gcd(a, b):
11
while
b:
12
a, b = b, a % b
13
return
a
14
15
# Other types of layers can go here (e.g., nn.Linear, etc.)
16
def
_init_weights(module, name, scheme=
''
):
Callers
1
forward
Method · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected