File tree 6 files changed +25
-4
lines changed
6 files changed +25
-4
lines changed Original file line number Diff line number Diff line change 1
1
.dockerignore
2
2
.git
3
- Dockerfile
3
+ Dockerfile
4
+ _clinic
5
+ data
6
+ perf-reporting /output
Original file line number Diff line number Diff line change
1
+ add filter =lfs diff =lfs merge =lfs - text
2
+ _clinic /perf /v3 /report2.txt filter =lfs diff =lfs merge =lfs - text
Original file line number Diff line number Diff line change @@ -69,3 +69,8 @@ flycheck_*.el
69
69
/perf-reporting /output /tmp /
70
70
/perf-reporting /output /untar /
71
71
/perf-reporting /output /unzip /
72
+ isolate- * .log
73
+ ltrace.txt
74
+ perf.data
75
+ perf.data.old
76
+ report.txt
Original file line number Diff line number Diff line change 1
1
test :
2
- docker compose build
3
- docker compose up
2
+ docker compose build mina-local-network
3
+ docker compose up mina-local-network
Original file line number Diff line number Diff line change @@ -411,3 +411,9 @@ mina-local-network-1 |
411
411
mina-local-network-1 | $ tar xvf src/lib/provable/test/primitives.test.ts.perf.data.tar.bz2 -C ~/.debug
412
412
413
413
```
414
+
415
+
416
+ # next step
417
+
418
+ ` perf record -g -F 999 --call-graph dwarf node --perf-basic-prof ./node_modules/.bin/../jest/bin/jest.js src/lib/mina/token.test.ts `
419
+ ` perf report --stdio > report2.txt `
Original file line number Diff line number Diff line change @@ -35,8 +35,13 @@ TESTS="src/lib/provable/test/merkle-list.test.ts src/lib/provable/test/merkle-tr
35
35
for testname in $TESTS ;
36
36
37
37
do
38
- perf record -o ${testname} .perf.data -F 999 --call-graph dwarf node --perf-basic-prof ./node_modules/.bin/../jest/bin/jest.js ${testname} > ${testname} .reportout.txt 2>&1
38
+ perfdata=${testname} .perf.data
39
+ perf record -g -o ${testname} .perf.data -F 999 --call-graph dwarf node --perf-basic-prof ./node_modules/.bin/../jest/bin/jest.js ${testname} > ${testname} .reportout.txt 2>&1
39
40
perf archive ${testname} .perf.data
41
+ perf report -i " ${perfdata} " --verbose --stdio --header > " ${perfdata} .header.txt" 2>&1
42
+ perf report -i " ${perfdata} " --verbose --stdio --stats > " ${perfdata} .stats.txt" 2>&1
43
+ perf script -F +pid -i " ${perfdata} " > " ${perfdata} .script.txt" 2>&1
44
+ perf report --stdio -i " ${perfdata} " > " ${perfdata} .report.txt" 2>&1
40
45
41
46
cp ${testname} .* /tmp/perf/
42
47
done
You can’t perform that action at this time.
0 commit comments