Updated Instructions on Profiling SGLang Infer System with AMD GPUs (#1966)

Co-authored-by: wunhuang <wunhuang@amd.com>
This commit is contained in:
leishaoSC
2024-11-08 23:19:03 -08:00
committed by GitHub
parent e3126e3c5f
commit d1150e9a00
10 changed files with 729 additions and 1 deletions

10
3rdparty/amd/profiling/install_rpd.sh vendored Normal file
View File

@@ -0,0 +1,10 @@
# download and install RPD
apt update && apt install -y sqlite3 libsqlite3-dev libfmt-dev
# install rpd module
git clone https://github.com/ROCmSoftwarePlatform/rocmProfileData
cd rocmProfileData
git apply rpd.patch
make && make install
cd rocpd_python && python setup.py install && cd ..
cd rpd_tracer && make clean;make install && python setup.py install && cd ..