File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -205,9 +205,13 @@ def format_table_output(self, job_id: str) -> Table:
205205 if self .params .get ("enable_prefix_caching" ):
206206 table .add_row ("Enable Prefix Caching" , self .params ["enable_prefix_caching" ])
207207 if self .params .get ("enable_chunked_prefill" ):
208- table .add_row ("Enable Chunked Prefill" , self .params ["enable_chunked_prefill" ])
208+ table .add_row (
209+ "Enable Chunked Prefill" , self .params ["enable_chunked_prefill" ]
210+ )
209211 if self .params .get ("max_num_batched_tokens" ):
210- table .add_row ("Max Num Batched Tokens" , self .params ["max_num_batched_tokens" ])
212+ table .add_row (
213+ "Max Num Batched Tokens" , self .params ["max_num_batched_tokens" ]
214+ )
211215 if self .params .get ("enforce_eager" ):
212216 table .add_row ("Enforce Eager" , self .params ["enforce_eager" ])
213217 table .add_row ("Model Weights Directory" , os .environ .get ("MODEL_WEIGHTS" ))
You can’t perform that action at this time.
0 commit comments