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.
6 lines
194 B
6 lines
194 B
5 years ago
|
#!/bin/bash
|
||
|
|
||
|
sudo $HOME/one/external/pyflame/pyflame -s 5 -o /tmp/perf$1.txt -p $1 &&
|
||
|
$HOME/one/external/pyflame/flamegraph.pl /tmp/perf$1.txt > /tmp/perf$1.svg &&
|
||
|
google-chrome /tmp/perf$1.svg
|