MCPcopy 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
10def 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.)
16def _init_weights(module, name, scheme=''):

Callers 1

forwardMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected