palanteer seems pretty cool

pull/23327/head
Adeeb Shihadeh 3 years ago
parent 1fc1382480
commit 4c7c2cc75d
  1. 2
      selfdrive/debug/profiling/palanteer/.gitignore
  2. 24
      selfdrive/debug/profiling/palanteer/setup.sh

@ -0,0 +1,2 @@
palanteer/
viewer

@ -0,0 +1,24 @@
#!/bin/bash
set -e
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
cd $DIR
if [ ! -d palanteer ]; then
git clone https://github.com/dfeneyrou/palanteer
pip install wheel
sudo apt install libunwind-dev libdw-dev
fi
cd palanteer
git pull
mkdir -p build
cd build
cmake .. -DCMAKE_BUILD_TYPE=Release
make -j$(nproc)
pip install --force-reinstall python/dist/palanteer*.whl
cp bin/palanteer $DIR/viewer
Loading…
Cancel
Save