9 lines
177 B
Python
9 lines
177 B
Python
# COPIED FROM DeepGEMM
|
|
def align(x: int, y: int) -> int:
|
|
return ceil_div(x, y) * y
|
|
|
|
|
|
# COPIED FROM DeepGEMM
|
|
def ceil_div(x: int, y: int) -> int:
|
|
return (x + y - 1) // y
|