mirror of
https://github.com/iperov/DeepFaceLab.git
synced 2025-07-06 21:12:07 -07:00
7 lines
No EOL
116 B
Python
7 lines
No EOL
116 B
Python
from .umeyama import umeyama
|
|
|
|
def get_power_of_two(x):
|
|
i = 0
|
|
while (1 << i) < x:
|
|
i += 1
|
|
return i |