Advertisement
Guest User

Untitled

a guest
Sep 17th, 2019
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. rm -rf CscBench.CompileTest
  2. mkdir CscBench.CompileTest
  3. dotnet run -c Release -f netcoreapp2.2 --filter CscBench.CompileTest > /dev/null &
  4. pid=$!
  5. echo $pid
  6. sleep 10
  7. #perf-with-kcore.sh record CscBench.CompileTest -e intel_pt// -T -a --switch-events -- sleep 1
  8. for((i=0;i<48;i++))
  9. do
  10. perf record -C $i -e intel_pt// -T -a --switch-events -o CscBench.CompileTest/$i.data -- sleep 1 &
  11. #perf stat -C $i -a -e instructions,cycles,L1-icache-load-misses -x, -o del/$i.txt -- sleep 1 &
  12. done
  13. wait $pid
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement