We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 783374b + ff7d5c0 commit 66b1bf4Copy full SHA for 66b1bf4
README.md
@@ -52,3 +52,10 @@ bin/table-generator results/*xml.bz2
52
53
Replace 2ls by cbmc to use the above with CBMC.
54
55
+#### Collecting profiling data
56
+```
57
+bin/benchexec cbmc.xml --tasks <those categories that you want to run> -T 120s
58
+gprof --sum ./cbmc-binary *.gmon.out.*
59
+gprof ./cbmc-profiling gmon.sum > sum.profile
60
+rm gmon.out *.gmon.out.*
61
tool-wrapper.inc
@@ -113,6 +113,8 @@ export BIT_WIDTH
113
export BM
114
export PROP
115
116
+export GMON_OUT_PREFIX=`basename $BM`.gmon.out
117
+
118
export LOG=`mktemp -t ${TOOL_NAME}-log.XXXXXX`
119
trap "rm -f $LOG $LOG.latest $LOG.ok $LOG.witness" EXIT
120
0 commit comments