Files
FastDeploy/fastdeploy
google-labs-jules[bot] 69c7dd0a19 Bolt: Optimize single element list appends
Replaced instances of `.extend([item])` with `.append(item)` in multiple files.
Using `.extend([item])` incurs memory overhead by allocating a new single-element
list and is computationally slower than calling `.append(item)` directly.

Files updated:
- fastdeploy/input/encodings/ernie_encoding.py
- fastdeploy/input/ernie4_5_vl_processor/process.py
- fastdeploy/output/token_processor.py
- fastdeploy/worker/gpu_model_runner.py
- fastdeploy/worker/metax_model_runner.py
2026-04-15 16:45:13 +00:00
..
2026-04-07 16:30:32 +08:00
2026-04-14 17:28:22 +08:00
2026-04-14 20:04:04 +08:00
2026-03-31 11:02:26 +08:00
2026-04-14 17:28:22 +08:00
2025-07-03 15:43:53 +08:00