MCPcopy Create free account
hub / github.com/KnowingNothing/MatmulTutorial / integer_log2

Function integer_log2

cutlass.py/fast_math.py:5–11  ·  view source on GitHub ↗
(x)

Source from the content-addressed store, hash-verified

3
4
5def integer_log2(x):
6 n = 0
7 x >>= 1
8 while x:
9 x = x >> 1
10 n += 1
11 return n
12
13
14class FastDivmodU64Pow2:

Callers 1

__init__Method · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected