sglang.0.4.8.post1/sglang/python/sglang/math_utils.py

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