mirror of
https://github.com/logos-storage/plonky2.git
synced 2026-01-02 13:53:07 +00:00
7 lines
208 B
Python
7 lines
208 B
Python
def lb_exact(n):
|
|
"""Returns `log2(n)`, raising if `n` is not a power of 2."""
|
|
lb = n.bit_length() - 1
|
|
if lb < 0 or n != 1 << lb:
|
|
raise ValueError(f"{n} is not a power of 2")
|
|
return lb
|