2019-11-27 02:47:08 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2019-11-28 01:43:36 +00:00
|
|
|
"context"
|
2019-11-27 02:47:08 +00:00
|
|
|
"crypto/sha256"
|
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
|
|
|
"math/rand"
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
"time"
|
|
|
|
|
2019-11-27 12:12:42 +00:00
|
|
|
ffi "github.com/filecoin-project/filecoin-ffi"
|
2019-11-27 02:47:08 +00:00
|
|
|
"github.com/ipfs/go-datastore"
|
|
|
|
logging "github.com/ipfs/go-log"
|
|
|
|
"github.com/mitchellh/go-homedir"
|
|
|
|
"golang.org/x/xerrors"
|
|
|
|
"gopkg.in/urfave/cli.v2"
|
|
|
|
|
|
|
|
"github.com/filecoin-project/lotus/build"
|
|
|
|
"github.com/filecoin-project/lotus/chain/address"
|
|
|
|
"github.com/filecoin-project/lotus/lib/sectorbuilder"
|
|
|
|
)
|
|
|
|
|
|
|
|
var log = logging.Logger("lotus-bench")
|
|
|
|
|
|
|
|
type BenchResults struct {
|
|
|
|
SectorSize uint64
|
|
|
|
|
|
|
|
SealingResults []SealingResult
|
|
|
|
|
|
|
|
PostGenerateCandidates time.Duration
|
|
|
|
PostEProof time.Duration
|
2019-11-28 01:43:36 +00:00
|
|
|
VerifyEPost time.Duration
|
2019-11-27 02:47:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type SealingResult struct {
|
|
|
|
AddPiece time.Duration
|
|
|
|
PreCommit time.Duration
|
|
|
|
Commit time.Duration
|
2019-11-28 01:43:36 +00:00
|
|
|
Verify time.Duration
|
2019-11-27 02:47:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
logging.SetLogLevel("*", "INFO")
|
|
|
|
|
|
|
|
log.Info("Starting lotus-bench")
|
|
|
|
|
|
|
|
app := &cli.App{
|
|
|
|
Name: "lotus-bench",
|
|
|
|
Usage: "Benchmark performance of lotus on your hardware",
|
|
|
|
Version: build.Version,
|
|
|
|
Flags: []cli.Flag{
|
|
|
|
&cli.StringFlag{
|
|
|
|
Name: "storage-dir",
|
|
|
|
Value: "~/.lotus-bench",
|
|
|
|
Usage: "Path to the storage directory that will store sectors long term",
|
|
|
|
},
|
|
|
|
&cli.Uint64Flag{
|
|
|
|
Name: "sector-size",
|
|
|
|
Value: 1024,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Action: func(c *cli.Context) error {
|
|
|
|
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)
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
maddr, err := address.NewFromString("t0101")
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-11-28 01:43:36 +00:00
|
|
|
sectorSize := c.Uint64("sector-size")
|
|
|
|
|
2019-11-27 02:47:08 +00:00
|
|
|
mds := datastore.NewMapDatastore()
|
|
|
|
cfg := §orbuilder.Config{
|
|
|
|
Miner: maddr,
|
2019-11-28 01:43:36 +00:00
|
|
|
SectorSize: sectorSize,
|
2019-11-27 02:47:08 +00:00
|
|
|
WorkerThreads: 2,
|
|
|
|
CacheDir: filepath.Join(tsdir, "cache"),
|
|
|
|
SealedDir: filepath.Join(tsdir, "sealed"),
|
|
|
|
StagedDir: filepath.Join(tsdir, "staged"),
|
|
|
|
MetadataDir: filepath.Join(tsdir, "meta"),
|
|
|
|
}
|
|
|
|
for _, d := range []string{cfg.CacheDir, cfg.SealedDir, cfg.StagedDir, cfg.MetadataDir} {
|
|
|
|
if err := os.MkdirAll(d, 0775); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := build.GetParams(true, false); err != nil {
|
|
|
|
return xerrors.Errorf("getting params: %w", err)
|
|
|
|
}
|
|
|
|
sb, err := sectorbuilder.New(cfg, mds)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
r := rand.New(rand.NewSource(101))
|
2019-11-28 01:43:36 +00:00
|
|
|
size := sectorbuilder.UserBytesForSectorSize(sectorSize)
|
2019-11-27 02:47:08 +00:00
|
|
|
|
|
|
|
var sealTimings []SealingResult
|
2019-11-27 12:12:42 +00:00
|
|
|
var sealedSectors []ffi.PublicSectorInfo
|
2019-11-27 02:47:08 +00:00
|
|
|
numSectors := uint64(1)
|
|
|
|
for i := uint64(1); i <= numSectors; i++ {
|
|
|
|
start := time.Now()
|
|
|
|
log.Info("Writing piece into sector...")
|
|
|
|
pi, err := sb.AddPiece(size, i, r, nil)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
addpiece := time.Now()
|
|
|
|
|
|
|
|
trand := sha256.Sum256([]byte(c.String("ticket-preimage")))
|
|
|
|
ticket := sectorbuilder.SealTicket{
|
|
|
|
TicketBytes: trand,
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Info("Running replication...")
|
|
|
|
pieces := []sectorbuilder.PublicPieceInfo{pi}
|
|
|
|
pco, err := sb.SealPreCommit(i, ticket, pieces)
|
|
|
|
if err != nil {
|
|
|
|
return xerrors.Errorf("commit: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
precommit := time.Now()
|
|
|
|
|
2019-11-27 12:12:42 +00:00
|
|
|
sealedSectors = append(sealedSectors, ffi.PublicSectorInfo{
|
2019-11-27 02:47:08 +00:00
|
|
|
CommR: pco.CommR,
|
|
|
|
SectorID: i,
|
|
|
|
})
|
|
|
|
|
|
|
|
seed := sectorbuilder.SealSeed{
|
|
|
|
BlockHeight: 101,
|
|
|
|
TicketBytes: [32]byte{1, 2, 3, 4, 5},
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Info("Generating PoRep for sector")
|
|
|
|
proof, err := sb.SealCommit(i, ticket, seed, pieces, pco)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
sealcommit := time.Now()
|
2019-11-28 01:43:36 +00:00
|
|
|
commD := pi.CommP
|
|
|
|
sectorbuilder.VerifySeal(sectorSize, pco.CommR[:], commD[:], maddr, ticket.TicketBytes[:], seed.TicketBytes[:], i, proof)
|
|
|
|
|
|
|
|
verifySeal := time.Now()
|
2019-11-27 02:47:08 +00:00
|
|
|
|
|
|
|
sealTimings = append(sealTimings, SealingResult{
|
|
|
|
AddPiece: addpiece.Sub(start),
|
|
|
|
PreCommit: precommit.Sub(addpiece),
|
|
|
|
Commit: sealcommit.Sub(precommit),
|
2019-11-28 01:43:36 +00:00
|
|
|
Verify: verifySeal.Sub(sealcommit),
|
2019-11-27 02:47:08 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
beforePost := time.Now()
|
|
|
|
|
|
|
|
var challenge [32]byte
|
|
|
|
rand.Read(challenge[:])
|
|
|
|
|
|
|
|
log.Info("generating election post candidates")
|
|
|
|
sinfos := sectorbuilder.NewSortedPublicSectorInfo(sealedSectors)
|
|
|
|
candidates, err := sb.GenerateEPostCandidates(sinfos, challenge, []uint64{})
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
gencandidates := time.Now()
|
|
|
|
|
|
|
|
log.Info("computing election post snark")
|
|
|
|
proof, err := sb.ComputeElectionPoSt(sinfos, challenge[:], candidates[:1])
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
epost := time.Now()
|
|
|
|
|
2019-11-28 12:46:56 +00:00
|
|
|
ok, err := sectorbuilder.VerifyElectionPost(context.TODO(), sectorSize, sinfos, challenge[:], proof, candidates[:1], maddr)
|
2019-11-28 01:43:36 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if !ok {
|
|
|
|
log.Error("post verification failed")
|
|
|
|
}
|
|
|
|
|
|
|
|
verifypost := time.Now()
|
|
|
|
|
2019-11-27 02:47:08 +00:00
|
|
|
benchout := BenchResults{
|
|
|
|
SectorSize: cfg.SectorSize,
|
|
|
|
SealingResults: sealTimings,
|
|
|
|
|
|
|
|
PostGenerateCandidates: gencandidates.Sub(beforePost),
|
|
|
|
PostEProof: epost.Sub(gencandidates),
|
2019-11-28 01:43:36 +00:00
|
|
|
VerifyEPost: verifypost.Sub(epost),
|
2019-11-27 02:47:08 +00:00
|
|
|
} // TODO: optionally write this as json to a file
|
|
|
|
|
|
|
|
fmt.Println("results")
|
|
|
|
fmt.Printf("seal: addPiece: %s\n", benchout.SealingResults[0].AddPiece) // TODO: average across multiple sealings
|
|
|
|
fmt.Printf("seal: preCommit: %s\n", benchout.SealingResults[0].PreCommit)
|
|
|
|
fmt.Printf("seal: Commit: %s\n", benchout.SealingResults[0].Commit)
|
2019-11-28 01:43:36 +00:00
|
|
|
fmt.Printf("seal: Verify: %s\n", benchout.SealingResults[0].Verify)
|
2019-11-27 02:47:08 +00:00
|
|
|
fmt.Printf("generate candidates: %s\n", benchout.PostGenerateCandidates)
|
|
|
|
fmt.Printf("compute epost proof: %s\n", benchout.PostEProof)
|
2019-11-28 01:43:36 +00:00
|
|
|
fmt.Printf("verify epost proof: %s\n", benchout.VerifyEPost)
|
2019-11-27 02:47:08 +00:00
|
|
|
return nil
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := app.Run(os.Args); err != nil {
|
|
|
|
log.Warn(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|