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{ &cli.BoolFlag{
Name: "only-gc", Name: "only-gc",
}, },
&cli.BoolFlag{
Name: "global-profile",
Value: true,
},
&cli.Int64Flag{ &cli.Int64Flag{
Name: "start-at", Name: "start-at",
}, },
@ -161,6 +165,7 @@ var importBenchCmd = &cli.Command{
cs := store.NewChainStore(bs, ds, vm.Syscalls(verifier)) cs := store.NewChainStore(bs, ds, vm.Syscalls(verifier))
stm := stmgr.NewStateManager(cs) stm := stmgr.NewStateManager(cs)
if cctx.Bool("global-profile") {
prof, err := os.Create("import-bench.prof") prof, err := os.Create("import-bench.prof")
if err != nil { if err != nil {
return err return err
@ -170,6 +175,7 @@ var importBenchCmd = &cli.Command{
if err := pprof.StartCPUProfile(prof); err != nil { if err := pprof.StartCPUProfile(prof); err != nil {
return err return err
} }
}
var head *types.TipSet var head *types.TipSet
if !cctx.Bool("no-import") { if !cctx.Bool("no-import") {