Add global-profile option

Signed-off-by: Jakub Sztandera <kubuxu@protocol.ai>
This commit is contained in:
Jakub Sztandera 2020-09-19 20:27:24 +02:00
parent f21c5cbbe2
commit ebc8489ff1
No known key found for this signature in database
GPG Key ID: 9A9AF56F8B3879BA

View File

@ -80,6 +80,10 @@ var importBenchCmd = &cli.Command{
&cli.BoolFlag{
Name: "only-gc",
},
&cli.BoolFlag{
Name: "global-profile",
Value: true,
},
&cli.Int64Flag{
Name: "start-at",
},
@ -161,14 +165,16 @@ var importBenchCmd = &cli.Command{
cs := store.NewChainStore(bs, ds, vm.Syscalls(verifier))
stm := stmgr.NewStateManager(cs)
prof, err := os.Create("import-bench.prof")
if err != nil {
return err
}
defer prof.Close() //nolint:errcheck
if cctx.Bool("global-profile") {
prof, err := os.Create("import-bench.prof")
if err != nil {
return err
}
defer prof.Close() //nolint:errcheck
if err := pprof.StartCPUProfile(prof); err != nil {
return err
if err := pprof.StartCPUProfile(prof); err != nil {
return err
}
}
var head *types.TipSet