lotus/cmd/lotus-bench/main.go

555 lines
14 KiB
Go
Raw Normal View History

package main
import (
2019-11-28 01:43:36 +00:00
"context"
"crypto/sha256"
2019-12-10 13:22:39 +00:00
"encoding/json"
"fmt"
"io/ioutil"
"math/big"
"math/rand"
"os"
"path/filepath"
"time"
"github.com/docker/go-units"
2020-01-02 19:08:49 +00:00
paramfetch "github.com/filecoin-project/go-paramfetch"
2020-02-28 18:06:59 +00:00
"github.com/filecoin-project/go-sectorbuilder/fs"
"github.com/filecoin-project/specs-actors/actors/abi"
logging "github.com/ipfs/go-log/v2"
"github.com/mitchellh/go-homedir"
"golang.org/x/xerrors"
"gopkg.in/urfave/cli.v2"
"github.com/filecoin-project/go-address"
2020-01-07 16:18:35 +00:00
"github.com/filecoin-project/go-sectorbuilder"
2020-02-28 18:06:59 +00:00
2020-02-27 22:23:05 +00:00
lapi "github.com/filecoin-project/lotus/api"
"github.com/filecoin-project/lotus/build"
"github.com/filecoin-project/lotus/chain/types"
2019-12-10 13:22:39 +00:00
"github.com/filecoin-project/lotus/genesis"
)
var log = logging.Logger("lotus-bench")
type BenchResults struct {
SectorSize abi.SectorSize
SealingResults []SealingResult
PostGenerateCandidates time.Duration
2019-11-29 18:48:07 +00:00
PostEProofCold time.Duration
PostEProofHot time.Duration
VerifyEPostCold time.Duration
VerifyEPostHot time.Duration
}
type SealingResult struct {
2020-02-28 18:06:59 +00:00
AddPiece time.Duration
PreCommit1 time.Duration
PreCommit2 time.Duration
Commit1 time.Duration
Commit2 time.Duration
Verify time.Duration
Unseal time.Duration
}
2020-02-29 02:31:25 +00:00
type Commit2In struct {
2020-03-01 02:52:23 +00:00
SectorNum int64
Phase1Out []byte
SectorSize uint64
2020-02-29 02:31:25 +00:00
}
func main() {
logging.SetLogLevel("*", "INFO")
log.Info("Starting lotus-bench")
2020-02-28 00:12:52 +00:00
build.SectorSizes = append(build.SectorSizes, 2048)
app := &cli.App{
Name: "lotus-bench",
Usage: "Benchmark performance of lotus on your hardware",
Version: build.UserVersion,
2020-03-01 02:52:23 +00:00
Commands: []*cli.Command{
proveCmd,
},
Flags: []cli.Flag{
&cli.StringFlag{
Name: "storage-dir",
Value: "~/.lotus-bench",
Usage: "Path to the storage directory that will store sectors long term",
},
&cli.StringFlag{
Name: "sector-size",
2020-02-28 18:06:59 +00:00
Value: "512MiB",
Usage: "size of the sectors in bytes, i.e. 32GiB",
},
2019-12-02 19:25:10 +00:00
&cli.BoolFlag{
Name: "no-gpu",
Usage: "disable gpu usage for the benchmark run",
},
2019-12-10 13:22:39 +00:00
&cli.StringFlag{
Name: "miner-addr",
Usage: "pass miner address (only necessary if using existing sectorbuilder)",
2020-02-28 18:06:59 +00:00
Value: "t01000",
2019-12-10 13:22:39 +00:00
},
&cli.StringFlag{
Name: "benchmark-existing-sectorbuilder",
Usage: "pass a directory to run election-post timings on an existing sectorbuilder",
},
2019-12-10 14:05:41 +00:00
&cli.BoolFlag{
Name: "json-out",
Usage: "output results in json format",
},
2019-12-19 19:45:15 +00:00
&cli.BoolFlag{
Name: "skip-unseal",
Usage: "skip the unseal portion of the benchmark",
},
2020-02-29 02:31:25 +00:00
&cli.StringFlag{
Name: "save-commit2-input",
Usage: "Save commit2 input to a file",
},
},
Action: func(c *cli.Context) error {
2019-12-02 19:25:10 +00:00
if c.Bool("no-gpu") {
os.Setenv("BELLMAN_NO_GPU", "1")
}
robench := c.String("benchmark-existing-sectorbuilder")
var sbdir string
if robench == "" {
sdir, err := homedir.Expand(c.String("storage-dir"))
if err != nil {
return err
}
os.MkdirAll(sdir, 0775)
tsdir, err := ioutil.TempDir(sdir, "bench")
if err != nil {
return err
}
defer func() {
if err := os.RemoveAll(tsdir); err != nil {
log.Warn("remove all: ", err)
}
}()
sbdir = tsdir
} else {
exp, err := homedir.Expand(robench)
if err != nil {
return err
}
sbdir = exp
}
2019-12-10 13:22:39 +00:00
maddr, err := address.NewFromString(c.String("miner-addr"))
if err != nil {
return err
}
sectorSizeInt, err := units.RAMInBytes(c.String("sector-size"))
if err != nil {
return err
}
sectorSize := abi.SectorSize(sectorSizeInt)
2019-11-28 01:43:36 +00:00
2020-02-27 22:23:05 +00:00
ppt, spt, err := lapi.ProofTypeFromSectorSize(sectorSize)
if err != nil {
return err
}
cfg := &sectorbuilder.Config{
Miner: maddr,
2020-02-27 22:23:05 +00:00
SealProofType: spt,
PoStProofType: ppt,
}
if robench == "" {
if err := os.MkdirAll(sbdir, 0775); err != nil {
return err
}
}
if err := paramfetch.GetParams(build.ParametersJson(), uint64(sectorSize)); err != nil {
return xerrors.Errorf("getting params: %w", err)
}
2020-02-28 18:06:59 +00:00
sbfs := &fs.Basic{
Miner: maddr,
NextID: 1,
Root: sbdir,
}
sb, err := sectorbuilder.New(sbfs, cfg)
if err != nil {
return err
}
2020-02-27 22:23:05 +00:00
amid, err := address.IDFromAddress(maddr)
if err != nil {
return err
}
mid := abi.ActorID(amid)
var sealTimings []SealingResult
2020-02-27 22:23:05 +00:00
var sealedSectors []abi.SectorInfo
numSectors := abi.SectorNumber(1)
for i := abi.SectorNumber(1); i <= numSectors && robench == ""; i++ {
start := time.Now()
log.Info("Writing piece into sector...")
2019-12-01 22:37:53 +00:00
r := rand.New(rand.NewSource(100 + int64(i)))
2020-02-27 22:23:05 +00:00
pi, err := sb.AddPiece(context.TODO(), abi.PaddedPieceSize(sectorSize).Unpadded(), i, r, nil)
if err != nil {
return err
}
addpiece := time.Now()
trand := sha256.Sum256([]byte(c.String("ticket-preimage")))
2020-02-27 22:23:05 +00:00
ticket := abi.SealRandomness(trand[:])
2020-02-28 18:06:59 +00:00
log.Info("Running replication(1)...")
2020-02-27 22:23:05 +00:00
pieces := []abi.PieceInfo{pi}
2020-02-28 18:06:59 +00:00
pc1o, err := sb.SealPreCommit1(context.TODO(), i, ticket, pieces)
if err != nil {
return xerrors.Errorf("commit: %w", err)
}
2020-02-28 18:06:59 +00:00
precommit1 := time.Now()
log.Info("Running replication(2)...")
commR, commD, err := sb.SealPreCommit2(context.TODO(), i, pc1o)
if err != nil {
return xerrors.Errorf("commit: %w", err)
}
precommit2 := time.Now()
2020-02-27 22:23:05 +00:00
sealedSectors = append(sealedSectors, abi.SectorInfo{
RegisteredProof: ppt,
SectorNumber: i,
SealedCID: commR,
})
2020-02-27 22:23:05 +00:00
seed := lapi.SealSeed{
Epoch: 101,
2020-02-28 20:52:14 +00:00
Value: []byte{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 255},
}
2020-02-28 18:06:59 +00:00
log.Info("Generating PoRep for sector (1)")
c1o, err := sb.SealCommit1(context.TODO(), i, ticket, seed.Value, pieces, commR, commD)
if err != nil {
return err
}
sealcommit1 := time.Now()
log.Info("Generating PoRep for sector (2)")
2020-02-29 02:31:25 +00:00
if c.String("save-commit2-input") != "" {
c2in := Commit2In{
2020-03-01 02:52:23 +00:00
SectorNum: int64(i),
2020-02-29 02:31:25 +00:00
Phase1Out: c1o,
SectorSize: 0,
}
b, err := json.Marshal(&c2in)
if err != nil {
return err
}
if err := ioutil.WriteFile(c.String("save-commit2-input"), b, 0664); err != nil {
log.Warnf("%+v", err)
}
}
2020-02-28 18:06:59 +00:00
proof, err := sb.SealCommit2(context.TODO(), i, c1o)
if err != nil {
return err
}
2020-02-28 18:06:59 +00:00
sealcommit2 := time.Now()
2020-02-27 22:23:05 +00:00
svi := abi.SealVerifyInfo{
SectorID: abi.SectorID{Miner: abi.ActorID(mid), Number: i},
OnChain: abi.OnChainSealVerifyInfo{
SealedCID: commR,
InteractiveEpoch: seed.Epoch,
RegisteredProof: ppt,
Proof: proof,
DealIDs: nil,
SectorNumber: i,
SealRandEpoch: 0,
},
Randomness: ticket,
InteractiveRandomness: seed.Value,
UnsealedCID: commD,
}
ok, err := sectorbuilder.ProofVerifier.VerifySeal(svi)
2019-11-29 18:48:07 +00:00
if err != nil {
return err
}
if !ok {
return xerrors.Errorf("porep proof for sector %d was invalid", i)
}
2019-11-28 01:43:36 +00:00
verifySeal := time.Now()
2019-12-19 19:45:15 +00:00
if !c.Bool("skip-unseal") {
log.Info("Unsealing sector")
2020-02-27 22:23:05 +00:00
rc, err := sb.ReadPieceFromSealedSector(context.TODO(), 1, 0, abi.UnpaddedPieceSize(sectorSize), ticket, commD)
2019-12-19 19:45:15 +00:00
if err != nil {
return err
}
2019-12-01 22:37:53 +00:00
2019-12-19 19:45:15 +00:00
if err := rc.Close(); err != nil {
return err
}
2019-12-01 22:37:53 +00:00
}
2019-12-19 19:45:15 +00:00
unseal := time.Now()
2019-12-01 22:37:53 +00:00
sealTimings = append(sealTimings, SealingResult{
2020-02-28 18:06:59 +00:00
AddPiece: addpiece.Sub(start),
PreCommit1: precommit1.Sub(addpiece),
PreCommit2: precommit2.Sub(precommit1),
Commit1: sealcommit1.Sub(precommit2),
Commit2: sealcommit2.Sub(sealcommit1),
Verify: verifySeal.Sub(sealcommit2),
Unseal: unseal.Sub(verifySeal),
})
}
beforePost := time.Now()
var challenge [32]byte
rand.Read(challenge[:])
2019-12-10 13:22:39 +00:00
if robench != "" {
// TODO: this assumes we only ever benchmark a preseal
// sectorbuilder directory... we need a better way to handle
// this in other cases
fdata, err := ioutil.ReadFile(filepath.Join(sbdir, "pre-seal-"+maddr.String()+".json"))
if err != nil {
return err
}
2020-02-25 21:09:22 +00:00
var genmm map[string]genesis.Miner
2019-12-10 13:22:39 +00:00
if err := json.Unmarshal(fdata, &genmm); err != nil {
return err
}
genm, ok := genmm[maddr.String()]
if !ok {
return xerrors.Errorf("preseal file didnt have expected miner in it")
}
for _, s := range genm.Sectors {
2020-02-27 22:23:05 +00:00
sealedSectors = append(sealedSectors, abi.SectorInfo{
SealedCID: s.CommR,
SectorNumber: s.SectorID,
2019-12-10 13:22:39 +00:00
})
}
}
log.Info("generating election post candidates")
2020-02-27 22:23:05 +00:00
fcandidates, err := sb.GenerateEPostCandidates(sealedSectors, abi.PoStRandomness(challenge[:]), []abi.SectorNumber{})
if err != nil {
return err
}
2020-02-27 22:23:05 +00:00
var candidates []abi.PoStCandidate
for _, c := range fcandidates {
candidates = append(candidates, c.Candidate)
}
gencandidates := time.Now()
2019-11-29 18:48:07 +00:00
log.Info("computing election post snark (cold)")
2020-02-27 22:23:05 +00:00
proof1, err := sb.ComputeElectionPoSt(sealedSectors, challenge[:], candidates[:1])
2019-11-29 18:48:07 +00:00
if err != nil {
return err
}
epost1 := time.Now()
log.Info("computing election post snark (hot)")
2020-02-27 22:23:05 +00:00
proof2, err := sb.ComputeElectionPoSt(sealedSectors, challenge[:], candidates[:1])
if err != nil {
return err
}
2019-11-29 18:48:07 +00:00
epost2 := time.Now()
2020-02-27 22:23:05 +00:00
ccount := sectorbuilder.ElectionPostChallengeCount(uint64(len(sealedSectors)), 0)
2019-11-29 18:48:07 +00:00
2020-02-27 22:23:05 +00:00
pvi1 := abi.PoStVerifyInfo{
Randomness: abi.PoStRandomness(challenge[:]),
Candidates: candidates[:1],
Proofs: proof1,
EligibleSectors: sealedSectors,
2020-03-01 02:52:23 +00:00
Prover: mid,
2020-02-27 22:23:05 +00:00
ChallengeCount: ccount,
}
ok, err := sectorbuilder.ProofVerifier.VerifyElectionPost(context.TODO(), pvi1)
2019-11-28 01:43:36 +00:00
if err != nil {
return err
}
if !ok {
log.Error("post verification failed")
}
2019-11-29 18:48:07 +00:00
verifypost1 := time.Now()
2020-02-27 22:23:05 +00:00
pvi2 := abi.PoStVerifyInfo{
Randomness: abi.PoStRandomness(challenge[:]),
Candidates: candidates[:1],
Proofs: proof2,
EligibleSectors: sealedSectors,
2020-03-01 02:52:23 +00:00
Prover: mid,
2020-02-27 22:23:05 +00:00
ChallengeCount: ccount,
}
ok, err = sectorbuilder.ProofVerifier.VerifyElectionPost(context.TODO(), pvi2)
2019-11-29 18:48:07 +00:00
if err != nil {
return err
}
if !ok {
log.Error("post verification failed")
}
verifypost2 := time.Now()
2019-11-28 01:43:36 +00:00
2019-12-10 18:04:13 +00:00
bo := BenchResults{
2020-02-27 22:23:05 +00:00
SectorSize: sectorSize,
SealingResults: sealTimings,
PostGenerateCandidates: gencandidates.Sub(beforePost),
2019-11-29 18:48:07 +00:00
PostEProofCold: epost1.Sub(gencandidates),
PostEProofHot: epost2.Sub(epost1),
VerifyEPostCold: verifypost1.Sub(epost2),
VerifyEPostHot: verifypost2.Sub(verifypost1),
} // TODO: optionally write this as json to a file
2019-12-10 14:05:41 +00:00
if c.Bool("json-out") {
2019-12-10 18:04:13 +00:00
data, err := json.MarshalIndent(bo, "", " ")
2019-12-10 14:05:41 +00:00
if err != nil {
return err
}
fmt.Println(string(data))
} else {
2020-02-28 18:06:59 +00:00
fmt.Printf("----\nresults (v23) (%d)\n", sectorSize)
2019-12-10 14:05:41 +00:00
if robench == "" {
2019-12-10 18:04:13 +00:00
fmt.Printf("seal: addPiece: %s (%s)\n", bo.SealingResults[0].AddPiece, bps(bo.SectorSize, bo.SealingResults[0].AddPiece)) // TODO: average across multiple sealings
2020-02-28 18:06:59 +00:00
fmt.Printf("seal: preCommit phase 1: %s (%s)\n", bo.SealingResults[0].PreCommit1, bps(bo.SectorSize, bo.SealingResults[0].PreCommit1))
fmt.Printf("seal: preCommit phase 2: %s (%s)\n", bo.SealingResults[0].PreCommit2, bps(bo.SectorSize, bo.SealingResults[0].PreCommit2))
fmt.Printf("seal: commit phase 1: %s (%s)\n", bo.SealingResults[0].Commit1, bps(bo.SectorSize, bo.SealingResults[0].Commit1))
fmt.Printf("seal: commit phase 2: %s (%s)\n", bo.SealingResults[0].Commit2, bps(bo.SectorSize, bo.SealingResults[0].Commit2))
2019-12-10 18:04:13 +00:00
fmt.Printf("seal: verify: %s\n", bo.SealingResults[0].Verify)
if !c.Bool("skip-unseal") {
fmt.Printf("unseal: %s (%s)\n", bo.SealingResults[0].Unseal, bps(bo.SectorSize, bo.SealingResults[0].Unseal))
}
2019-12-10 14:05:41 +00:00
}
fmt.Printf("generate candidates: %s (%s)\n", bo.PostGenerateCandidates, bps(bo.SectorSize*abi.SectorSize(len(bo.SealingResults)), bo.PostGenerateCandidates))
2019-12-10 18:04:13 +00:00
fmt.Printf("compute epost proof (cold): %s\n", bo.PostEProofCold)
fmt.Printf("compute epost proof (hot): %s\n", bo.PostEProofHot)
fmt.Printf("verify epost proof (cold): %s\n", bo.VerifyEPostCold)
fmt.Printf("verify epost proof (hot): %s\n", bo.VerifyEPostHot)
}
return nil
},
}
if err := app.Run(os.Args); err != nil {
log.Warn(err)
return
}
}
2019-12-10 18:04:13 +00:00
2020-03-01 02:52:23 +00:00
var proveCmd = &cli.Command{
Name: "prove",
Usage: "Benchmark a proof computation",
Flags: []cli.Flag{
&cli.BoolFlag{
Name: "no-gpu",
Usage: "disable gpu usage for the benchmark run",
},
},
Action: func(c *cli.Context) error {
if c.Bool("no-gpu") {
os.Setenv("BELLMAN_NO_GPU", "1")
}
if !c.Args().Present() {
return xerrors.Errorf("Usage: lotus-bench prove [input.json]")
}
inb, err := ioutil.ReadFile(c.Args().First())
if err != nil {
return xerrors.Errorf("reading input file: %w", err)
}
var c2in Commit2In
if err := json.Unmarshal(inb, &c2in); err != nil {
return xerrors.Errorf("unmarshalling input file: %w", err)
}
if err := paramfetch.GetParams(build.ParametersJson(), c2in.SectorSize); err != nil {
return xerrors.Errorf("getting params: %w", err)
}
maddr, err := address.NewFromString(c.String("miner-addr"))
if err != nil {
return err
}
ppt, spt, err := lapi.ProofTypeFromSectorSize(abi.SectorSize(c2in.SectorSize))
if err != nil {
return err
}
cfg := &sectorbuilder.Config{
Miner: maddr,
SealProofType: spt,
PoStProofType: ppt,
}
sb, err := sectorbuilder.New(nil, cfg)
if err != nil {
return err
}
start := time.Now()
proof, err := sb.SealCommit2(context.TODO(), abi.SectorNumber(c2in.SectorNum), c2in.Phase1Out)
if err != nil {
return err
}
sealCommit2 := time.Now()
fmt.Printf("proof: %x\n", proof)
fmt.Printf("----\nresults (v23) (%d)\n", c2in.SectorSize)
dur := sealCommit2.Sub(start)
fmt.Printf("seal: commit phase 2: %s (%s)\n", dur, bps(abi.SectorSize(c2in.SectorSize), dur))
return nil
},
}
func bps(data abi.SectorSize, d time.Duration) string {
bdata := new(big.Int).SetUint64(uint64(data))
bdata = bdata.Mul(bdata, big.NewInt(time.Second.Nanoseconds()))
bps := bdata.Div(bdata, big.NewInt(d.Nanoseconds()))
return types.SizeStr(types.BigInt{bps}) + "/s"
2019-12-10 18:04:13 +00:00
}