File: profiling.txt

package info (click to toggle)
ray 2.3.1-9
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,008 kB
  • sloc: cpp: 49,973; sh: 339; makefile: 281; python: 168
file content (19 lines) | stat: -rw-r--r-- 246 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

Compile Ray with


Run Ray with -run-profiler


Extract profiling information

	grep "from previous" coli.Log |awk '{print $4" "$9" "$10" "$11" "$14}' > stats


Remove the +

	sed -i 's/+//g' stats

Sort the entries:

	cat stats|sort -n -r|less