mirror of
https://github.com/NVIDIA/TensorRT-LLM.git
synced 2026-01-13 22:18:36 +08:00
* Update TensorRT-LLM --------- Co-authored-by: Denis Kayshev <topenkoff@gmail.com> Co-authored-by: akhoroshev <arthoroshev@gmail.com> Co-authored-by: Patrick Reiter Horn <patrick.horn@gmail.com> Update
10 lines
259 B
Bash
10 lines
259 B
Bash
#!/bin/bash
|
|
|
|
DIR="tensorrt_llm/examples"
|
|
SOURCE="tensorrt_llm==0.9.0.dev0"
|
|
TARGET="tensorrt_llm==0.9.0.dev1"
|
|
|
|
find "$DIR" -type f \( -name "requirements.txt" -o -name "constraints.txt" \) | while read -r file; do
|
|
sed -i "s/$SOURCE/$TARGET/g" "$file"
|
|
done
|