[Bugfix] Fix inverted PP-disable condition for diffusion LLM inference (#27700)
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Opus 4.8
parent
8b7a1e908a
commit
c268a7edf5
@@ -6216,7 +6216,7 @@ class ServerArgs:
|
|||||||
)
|
)
|
||||||
self.enable_lmcache = False
|
self.enable_lmcache = False
|
||||||
|
|
||||||
if not self.pp_size > 1:
|
if self.pp_size > 1:
|
||||||
logger.warning(
|
logger.warning(
|
||||||
"Pipeline parallelism is disabled because of using diffusion LLM inference"
|
"Pipeline parallelism is disabled because of using diffusion LLM inference"
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user