mirror of
https://git.datalinker.icu/vllm-project/vllm.git
synced 2025-12-10 10:18:39 +08:00
[Misc] Slight improve deepgemm print (#24085)
Signed-off-by: Jee Jee Li <pandaleefree@gmail.com>
This commit is contained in:
parent
83609ca91d
commit
94866d7c93
@ -57,13 +57,14 @@ def _valid_deep_gemm(hidden_states: torch.Tensor, w1: torch.Tensor,
|
|||||||
if not _valid_deep_gemm_shape(M, N, K):
|
if not _valid_deep_gemm_shape(M, N, K):
|
||||||
logger.debug_once(
|
logger.debug_once(
|
||||||
"DeepGemm disabled due to unaligned problem size. "
|
"DeepGemm disabled due to unaligned problem size. "
|
||||||
"M: %s, N: %s, K: %s. M should >= align size "
|
"M: %s, N: %s, K: %s. M should >= %s "
|
||||||
"and N and K must be multiples of %s. "
|
"and N and K must be multiples of %s. "
|
||||||
"This is not an error and we will fall back to triton.",
|
"This is not an error and we will fall back to triton.",
|
||||||
M,
|
M,
|
||||||
N,
|
N,
|
||||||
K,
|
K,
|
||||||
align,
|
align,
|
||||||
|
align,
|
||||||
)
|
)
|
||||||
return False
|
return False
|
||||||
elif N <= 512:
|
elif N <= 512:
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user