mirror of
https://github.com/NVIDIA/TensorRT-LLM.git
synced 2026-01-14 06:27:45 +08:00
* Update TensorRT-LLM --------- Co-authored-by: meghagarwal <16129366+megha95@users.noreply.github.com> Co-authored-by: Shixiaowei02 <39303645+Shixiaowei02@users.noreply.github.com>
10 lines
226 B
Bash
10 lines
226 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" | while read -r file; do
|
|
sed -i "s/$SOURCE/$TARGET/g" "$file"
|
|
done
|