You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
f"max_context_length {llm_config.export.max_context_length} must be >= max_seq_len {llm_config.export.max_seq_length}. max_context_length impacts kv cache size that is used to remember history, while max_seq_length refers to user prompt length. Please use --max_context_length to specify context length."
805
813
)
806
814
ifllm_config.model.enable_dynamic_shapeand (
807
-
llm_config.backend.coreml.enabledor
808
-
llm_config.backend.mps.enabledor
809
-
llm_config.backend.qnn.enabled
815
+
llm_config.backend.coreml.enabled
816
+
orllm_config.backend.mps.enabled
817
+
orllm_config.backend.qnn.enabled
810
818
):
811
819
raiseValueError(
812
820
"Dynamic shape is not supported with coreml, MPS or qnn backends."
0 commit comments