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.
9 lines
287 B
9 lines
287 B
5 years ago
|
#!/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
|