dragonpilot - 基於 openpilot 的開源駕駛輔助系統
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash
|
|
set -e
|
|
|
|
cd "$( dirname "${BASH_SOURCE[0]}" )"
|
|
|
|
ssh "$1" '$HOME/one/external/simpleperf/bin/android/arm64/simpleperf record --call-graph fp -a --duration 10 -o /tmp/perf.data'
|
|
scp "$1":/tmp/perf.data /tmp/perf.data
|
|
python2 report_html.py -i /tmp/perf.data -o /tmp/report.html
|
|
|