We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb75045 commit 7c664c3Copy full SHA for 7c664c3
1 file changed
lightllm/models/gemma4/model.py
@@ -155,6 +155,9 @@ def _init_ple_static_buffer(self):
155
)
156
157
def _init_to_get_rotary_gemma4(self):
158
+ # gemma4 当前不支持 dp prefill balance
159
+ assert self.args.enable_dp_prefill_balance is False, "Gemma-4 does not support dp prefill balance"
160
+
161
rope_params = self.config["rope_parameters"]
162
163
# Cap the rotary table at something we can fit in memory — Gemma-4's
0 commit comments