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"
2019-12-10 13:22:39 +00:00
"encoding/json"
2019-11-27 02:47:08 +00:00
"fmt"
"io/ioutil"
2019-12-10 19:53:39 +00:00
"math/big"
2019-11-27 02:47:08 +00:00
"math/rand"
"os"
"path/filepath"
"time"
2019-12-16 13:49:58 +00:00
"github.com/docker/go-units"
2020-01-08 19:10:57 +00:00
logging "github.com/ipfs/go-log/v2"
2019-11-27 02:47:08 +00:00
"github.com/mitchellh/go-homedir"
"golang.org/x/xerrors"
"gopkg.in/urfave/cli.v2"
2019-12-19 20:13:17 +00:00
"github.com/filecoin-project/go-address"
2020-03-15 17:48:27 +00:00
paramfetch "github.com/filecoin-project/go-paramfetch"
"github.com/filecoin-project/specs-actors/actors/abi"
"github.com/filecoin-project/specs-storage/storage"
2020-02-28 18:06:59 +00:00
2020-02-27 22:23:05 +00:00
lapi "github.com/filecoin-project/lotus/api"
2019-11-27 02:47:08 +00:00
"github.com/filecoin-project/lotus/build"
2019-12-10 19:53:39 +00:00
"github.com/filecoin-project/lotus/chain/types"
2019-12-10 13:22:39 +00:00
"github.com/filecoin-project/lotus/genesis"
2020-03-27 23:00:21 +00:00
"github.com/filecoin-project/sector-storage/ffiwrapper"
"github.com/filecoin-project/sector-storage/ffiwrapper/basicfs"
2019-11-27 02:47:08 +00:00
)
var log = logging . Logger ( "lotus-bench" )
type BenchResults struct {
2020-02-10 19:16:36 +00:00
SectorSize abi . SectorSize
2019-11-27 02:47:08 +00:00
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
2019-11-27 02:47:08 +00:00
}
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
2019-11-27 02:47:08 +00:00
}
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
}
2019-11-27 02:47:08 +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 )
2019-12-17 19:59:14 +00:00
2019-11-27 02:47:08 +00:00
app := & cli . App {
Name : "lotus-bench" ,
Usage : "Benchmark performance of lotus on your hardware" ,
2019-12-11 22:00:39 +00:00
Version : build . UserVersion ,
2020-03-01 02:52:23 +00:00
Commands : [ ] * cli . Command {
proveCmd ,
2020-04-02 21:18:57 +00:00
sealBenchCmd ,
importBenchCmd ,
2020-03-01 02:52:23 +00:00
} ,
2020-04-02 21:18:57 +00:00
}
2019-11-27 02:47:08 +00:00
2020-04-02 21:18:57 +00:00
if err := app . Run ( os . Args ) ; err != nil {
log . Warnf ( "%+v" , err )
return
}
}
2019-12-10 13:01:17 +00:00
2020-04-02 21:18:57 +00:00
var sealBenchCmd = & cli . Command {
Name : "sealing" ,
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" ,
Value : "512MiB" ,
Usage : "size of the sectors in bytes, i.e. 32GiB" ,
} ,
& cli . BoolFlag {
Name : "no-gpu" ,
Usage : "disable gpu usage for the benchmark run" ,
} ,
& cli . StringFlag {
Name : "miner-addr" ,
Usage : "pass miner address (only necessary if using existing sectorbuilder)" ,
Value : "t01000" ,
} ,
& cli . StringFlag {
Name : "benchmark-existing-sectorbuilder" ,
2020-04-10 22:20:48 +00:00
Usage : "pass a directory to run post timings on an existing sectorbuilder" ,
2020-04-02 21:18:57 +00:00
} ,
& cli . BoolFlag {
Name : "json-out" ,
Usage : "output results in json format" ,
} ,
& cli . BoolFlag {
Name : "skip-commit2" ,
Usage : "skip the commit2 (snark) portion of the benchmark" ,
} ,
& cli . BoolFlag {
Name : "skip-unseal" ,
Usage : "skip the unseal portion of the benchmark" ,
} ,
& cli . StringFlag {
Name : "save-commit2-input" ,
Usage : "Save commit2 input to a file" ,
} ,
} ,
Action : func ( c * cli . Context ) error {
if c . Bool ( "no-gpu" ) {
os . Setenv ( "BELLMAN_NO_GPU" , "1" )
}
2019-12-10 13:01:17 +00:00
2020-04-02 21:18:57 +00:00
robench := c . String ( "benchmark-existing-sectorbuilder" )
2019-12-10 13:01:17 +00:00
2020-04-02 21:18:57 +00:00
var sbdir string
2019-11-27 02:47:08 +00:00
2020-04-02 21:18:57 +00:00
if robench == "" {
sdir , err := homedir . Expand ( c . String ( "storage-dir" ) )
2019-11-27 02:47:08 +00:00
if err != nil {
return err
}
2020-04-02 21:18:57 +00:00
os . MkdirAll ( sdir , 0775 )
tsdir , err := ioutil . TempDir ( sdir , "bench" )
2019-12-11 02:06:28 +00:00
if err != nil {
return err
}
2020-04-02 21:18:57 +00:00
defer func ( ) {
if err := os . RemoveAll ( tsdir ) ; err != nil {
log . Warn ( "remove all: " , err )
}
} ( )
sbdir = tsdir
} else {
exp , err := homedir . Expand ( robench )
2020-02-27 22:23:05 +00:00
if err != nil {
return err
}
2020-04-02 21:18:57 +00:00
sbdir = exp
}
2020-02-27 22:23:05 +00:00
2020-04-02 21:18:57 +00:00
maddr , err := address . NewFromString ( c . String ( "miner-addr" ) )
if err != nil {
return err
}
2019-12-10 13:01:17 +00:00
2020-04-02 21:18:57 +00:00
sectorSizeInt , err := units . RAMInBytes ( c . String ( "sector-size" ) )
if err != nil {
return err
}
sectorSize := abi . SectorSize ( sectorSizeInt )
2019-11-27 02:47:08 +00:00
2020-04-10 22:20:48 +00:00
spt , err := ffiwrapper . SealProofTypeFromSectorSize ( sectorSize )
2020-04-02 21:18:57 +00:00
if err != nil {
return err
}
2020-02-28 18:06:59 +00:00
2020-04-02 21:18:57 +00:00
cfg := & ffiwrapper . Config {
SealProofType : spt ,
}
2020-02-28 18:06:59 +00:00
2020-04-02 21:18:57 +00:00
if robench == "" {
if err := os . MkdirAll ( sbdir , 0775 ) ; err != nil {
2019-11-27 02:47:08 +00:00
return err
}
2020-04-02 21:18:57 +00:00
}
2019-11-27 02:47:08 +00:00
2020-04-02 21:18:57 +00:00
if ! c . Bool ( "skip-commit2" ) {
if err := paramfetch . GetParams ( build . ParametersJson ( ) , uint64 ( sectorSize ) ) ; err != nil {
return xerrors . Errorf ( "getting params: %w" , err )
2020-02-27 22:23:05 +00:00
}
2020-04-02 21:18:57 +00:00
}
sbfs := & basicfs . Provider {
Root : sbdir ,
}
2020-02-27 22:23:05 +00:00
2020-04-02 21:18:57 +00:00
sb , err := ffiwrapper . New ( sbfs , cfg )
if err != nil {
return err
}
2020-02-27 22:23:05 +00:00
2020-04-02 21:18:57 +00:00
amid , err := address . IDFromAddress ( maddr )
if err != nil {
return err
}
2020-03-18 01:08:11 +00:00
2020-04-02 21:18:57 +00:00
mid := abi . ActorID ( amid )
2019-12-01 22:37:53 +00:00
2020-04-02 21:18:57 +00:00
var sealTimings [ ] SealingResult
var sealedSectors [ ] abi . SectorInfo
numSectors := abi . SectorNumber ( 1 )
for i := abi . SectorNumber ( 1 ) ; i <= numSectors && robench == "" ; i ++ {
sid := abi . SectorID {
Miner : mid ,
Number : i ,
}
2019-12-01 22:37:53 +00:00
2020-04-02 21:18:57 +00:00
start := time . Now ( )
log . Info ( "Writing piece into sector..." )
2019-11-27 02:47:08 +00:00
2020-04-02 21:18:57 +00:00
r := rand . New ( rand . NewSource ( 100 + int64 ( i ) ) )
2019-11-27 02:47:08 +00:00
2020-04-02 21:18:57 +00:00
pi , err := sb . AddPiece ( context . TODO ( ) , sid , nil , abi . PaddedPieceSize ( sectorSize ) . Unpadded ( ) , r )
if err != nil {
return err
}
2019-11-27 02:47:08 +00:00
2020-04-02 21:18:57 +00:00
addpiece := time . Now ( )
2019-11-27 02:47:08 +00:00
2020-04-02 21:18:57 +00:00
trand := sha256 . Sum256 ( [ ] byte ( c . String ( "ticket-preimage" ) ) )
ticket := abi . SealRandomness ( trand [ : ] )
2020-02-28 18:06:59 +00:00
2020-04-02 21:18:57 +00:00
log . Info ( "Running replication(1)..." )
pieces := [ ] abi . PieceInfo { pi }
pc1o , err := sb . SealPreCommit1 ( context . TODO ( ) , sid , ticket , pieces )
if err != nil {
return xerrors . Errorf ( "commit: %w" , err )
}
2020-02-28 18:06:59 +00:00
2020-04-02 21:18:57 +00:00
precommit1 := time . Now ( )
2019-11-27 02:47:08 +00:00
2020-04-02 21:18:57 +00:00
log . Info ( "Running replication(2)..." )
cids , err := sb . SealPreCommit2 ( context . TODO ( ) , sid , pc1o )
if err != nil {
return xerrors . Errorf ( "commit: %w" , err )
}
2019-11-27 02:47:08 +00:00
2020-04-02 21:18:57 +00:00
precommit2 := time . Now ( )
2019-11-27 02:47:08 +00:00
2020-04-02 21:18:57 +00:00
sealedSectors = append ( sealedSectors , abi . SectorInfo {
RegisteredProof : spt ,
SectorNumber : i ,
SealedCID : cids . Sealed ,
} )
2020-02-28 18:06:59 +00:00
2020-04-02 21:18:57 +00:00
seed := lapi . SealSeed {
Epoch : 101 ,
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
2020-04-02 21:18:57 +00:00
log . Info ( "Generating PoRep for sector (1)" )
c1o , err := sb . SealCommit1 ( context . TODO ( ) , sid , ticket , seed . Value , pieces , cids )
if err != nil {
return err
}
2020-02-28 18:06:59 +00:00
2020-04-02 21:18:57 +00:00
sealcommit1 := time . Now ( )
2020-02-29 02:31:25 +00:00
2020-04-02 21:18:57 +00:00
log . Info ( "Generating PoRep for sector (2)" )
2020-02-29 02:31:25 +00:00
2020-04-02 21:18:57 +00:00
if c . String ( "save-commit2-input" ) != "" {
c2in := Commit2In {
SectorNum : int64 ( i ) ,
Phase1Out : c1o ,
SectorSize : uint64 ( sectorSize ) ,
2020-02-29 02:31:25 +00:00
}
2020-04-02 21:18:57 +00:00
b , err := json . Marshal ( & c2in )
if err != nil {
return err
2019-11-27 02:47:08 +00:00
}
2020-04-02 21:18:57 +00:00
if err := ioutil . WriteFile ( c . String ( "save-commit2-input" ) , b , 0664 ) ; err != nil {
log . Warnf ( "%+v" , err )
2019-11-29 18:48:07 +00:00
}
2020-04-02 21:18:57 +00:00
}
2019-11-28 01:43:36 +00:00
2020-04-02 21:18:57 +00:00
var proof storage . Proof
if ! c . Bool ( "skip-commit2" ) {
proof , err = sb . SealCommit2 ( context . TODO ( ) , sid , c1o )
if err != nil {
return err
2019-12-01 22:37:53 +00:00
}
2019-11-27 02:47:08 +00:00
}
2020-04-02 21:18:57 +00:00
sealcommit2 := time . Now ( )
2019-11-27 02:47:08 +00:00
2020-04-02 21:18:57 +00:00
if ! c . Bool ( "skip-commit2" ) {
2019-12-10 13:22:39 +00:00
2020-04-02 21:18:57 +00:00
svi := abi . SealVerifyInfo {
SectorID : abi . SectorID { Miner : mid , Number : i } ,
OnChain : abi . OnChainSealVerifyInfo {
SealedCID : cids . Sealed ,
InteractiveEpoch : seed . Epoch ,
RegisteredProof : spt ,
Proof : proof ,
DealIDs : nil ,
SectorNumber : i ,
SealRandEpoch : 0 ,
} ,
Randomness : ticket ,
InteractiveRandomness : seed . Value ,
UnsealedCID : cids . Unsealed ,
}
ok , err := ffiwrapper . ProofVerifier . VerifySeal ( svi )
2019-12-10 13:22:39 +00:00
if err != nil {
return err
}
2020-04-02 21:18:57 +00:00
if ! ok {
return xerrors . Errorf ( "porep proof for sector %d was invalid" , i )
}
}
verifySeal := time . Now ( )
2019-12-10 13:22:39 +00:00
2020-04-02 21:18:57 +00:00
if ! c . Bool ( "skip-unseal" ) {
log . Info ( "Unsealing sector" )
// TODO: RM unsealed sector first
rc , err := sb . ReadPieceFromSealedSector ( context . TODO ( ) , abi . SectorID { Miner : mid , Number : 1 } , 0 , abi . UnpaddedPieceSize ( sectorSize ) , ticket , cids . Unsealed )
if err != nil {
2019-12-10 13:22:39 +00:00
return err
}
2020-04-02 21:18:57 +00:00
if err := rc . Close ( ) ; err != nil {
return err
2019-12-10 13:22:39 +00:00
}
2020-04-02 21:18:57 +00:00
}
unseal := time . Now ( )
sealTimings = append ( sealTimings , SealingResult {
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 ) ,
} )
}
2019-12-10 13:22:39 +00:00
2020-04-02 21:18:57 +00:00
beforePost := time . Now ( )
var challenge [ 32 ] byte
rand . Read ( challenge [ : ] )
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
2019-12-10 13:22:39 +00:00
}
2020-04-02 21:18:57 +00:00
var genmm map [ string ] genesis . Miner
if err := json . Unmarshal ( fdata , & genmm ) ; err != nil {
return err
2019-11-27 02:47:08 +00:00
}
2020-04-02 21:18:57 +00:00
genm , ok := genmm [ maddr . String ( ) ]
if ! ok {
return xerrors . Errorf ( "preseal file didnt have expected miner in it" )
}
2020-02-27 22:23:05 +00:00
2020-04-02 21:18:57 +00:00
for _ , s := range genm . Sectors {
sealedSectors = append ( sealedSectors , abi . SectorInfo {
SealedCID : s . CommR ,
SectorNumber : s . SectorID ,
} )
}
}
2019-11-27 02:47:08 +00:00
2020-04-02 21:18:57 +00:00
bo := BenchResults {
SectorSize : sectorSize ,
SealingResults : sealTimings ,
}
2019-11-29 18:48:07 +00:00
2020-04-02 21:18:57 +00:00
if ! c . Bool ( "skip-commit2" ) {
2020-04-10 12:19:06 +00:00
log . Info ( "generating winning post candidates" )
fcandidates , err := sb . GenerateWinningPoStSectorChallenge ( context . TODO ( ) , spt , mid , challenge [ : ] , uint64 ( len ( sealedSectors ) ) )
2020-04-02 21:18:57 +00:00
if err != nil {
return err
}
2019-11-29 18:48:07 +00:00
2020-04-10 12:19:06 +00:00
candidates := make ( [ ] abi . SectorInfo , len ( fcandidates ) )
for i , fcandidate := range fcandidates {
2020-04-10 21:07:18 +00:00
candidates [ i ] = sealedSectors [ i ]
_ = fcandidate // todo: I have no idea what is under fcandidate, but it's a large number
2020-04-02 21:18:57 +00:00
}
2019-11-27 02:47:08 +00:00
2020-04-02 21:18:57 +00:00
gencandidates := time . Now ( )
2019-11-27 02:47:08 +00:00
2020-04-10 12:19:06 +00:00
log . Info ( "computing winning post snark (cold)" )
proof1 , err := sb . GenerateWinningPoSt ( context . TODO ( ) , mid , candidates , challenge [ : ] )
2020-04-02 21:18:57 +00:00
if err != nil {
return err
}
2019-11-29 18:48:07 +00:00
2020-04-02 21:18:57 +00:00
epost1 := time . Now ( )
2019-11-28 01:43:36 +00:00
2020-04-10 12:19:06 +00:00
log . Info ( "computing winning post snark (hot)" )
proof2 , err := sb . GenerateWinningPoSt ( context . TODO ( ) , mid , candidates , challenge [ : ] )
2020-04-02 21:18:57 +00:00
if err != nil {
return err
}
2019-11-29 18:48:07 +00:00
2020-04-02 21:18:57 +00:00
epost2 := time . Now ( )
2020-02-27 22:23:05 +00:00
2020-04-10 12:19:06 +00:00
pvi1 := abi . WinningPoStVerifyInfo {
2020-04-10 21:07:18 +00:00
Randomness : abi . PoStRandomness ( challenge [ : ] ) ,
Proofs : proof1 ,
2020-04-10 12:19:06 +00:00
ChallengedSectors : candidates ,
2020-04-10 21:07:18 +00:00
Prover : mid ,
2020-04-02 21:18:57 +00:00
}
2020-04-10 12:19:06 +00:00
ok , err := ffiwrapper . ProofVerifier . VerifyWinningPoSt ( context . TODO ( ) , pvi1 )
2020-04-02 21:18:57 +00:00
if err != nil {
return err
}
if ! ok {
log . Error ( "post verification failed" )
}
2020-03-15 17:48:27 +00:00
2020-04-02 21:18:57 +00:00
verifypost1 := time . Now ( )
2020-04-10 12:19:06 +00:00
pvi2 := abi . WinningPoStVerifyInfo {
2020-04-10 21:07:18 +00:00
Randomness : abi . PoStRandomness ( challenge [ : ] ) ,
Proofs : proof2 ,
2020-04-10 12:19:06 +00:00
ChallengedSectors : candidates ,
2020-04-10 21:07:18 +00:00
Prover : mid ,
2020-03-15 17:48:27 +00:00
}
2019-11-27 02:47:08 +00:00
2020-04-10 12:19:06 +00:00
ok , err = ffiwrapper . ProofVerifier . VerifyWinningPoSt ( context . TODO ( ) , pvi2 )
2020-04-02 21:18:57 +00:00
if err != nil {
return err
}
if ! ok {
log . Error ( "post verification failed" )
}
verifypost2 := time . Now ( )
2019-12-10 14:05:41 +00:00
2020-04-02 21:18:57 +00:00
bo . PostGenerateCandidates = gencandidates . Sub ( beforePost )
bo . PostEProofCold = epost1 . Sub ( gencandidates )
bo . PostEProofHot = epost2 . Sub ( epost1 )
bo . VerifyEPostCold = verifypost1 . Sub ( epost2 )
bo . VerifyEPostHot = verifypost2 . Sub ( verifypost1 )
}
if c . Bool ( "json-out" ) {
data , err := json . MarshalIndent ( bo , "" , " " )
if err != nil {
return err
2019-12-10 13:01:17 +00:00
}
2019-11-27 02:47:08 +00:00
2020-04-02 21:18:57 +00:00
fmt . Println ( string ( data ) )
} else {
2020-04-09 18:10:31 +00:00
fmt . Printf ( "----\nresults (v25) (%d)\n" , sectorSize )
2020-04-02 21:18:57 +00:00
if robench == "" {
fmt . Printf ( "seal: addPiece: %s (%s)\n" , bo . SealingResults [ 0 ] . AddPiece , bps ( bo . SectorSize , bo . SealingResults [ 0 ] . AddPiece ) ) // TODO: average across multiple sealings
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 ) )
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 ) )
}
}
if ! c . Bool ( "skip-commit2" ) {
fmt . Printf ( "generate candidates: %s (%s)\n" , bo . PostGenerateCandidates , bps ( bo . SectorSize * abi . SectorSize ( len ( bo . SealingResults ) ) , bo . PostGenerateCandidates ) )
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
} ,
2019-11-27 02:47:08 +00:00
}
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
}
2020-03-18 01:08:11 +00:00
mid , err := address . IDFromAddress ( maddr )
if err != nil {
return err
}
2020-03-01 02:52:23 +00:00
2020-04-10 22:20:48 +00:00
spt , err := ffiwrapper . SealProofTypeFromSectorSize ( abi . SectorSize ( c2in . SectorSize ) )
2020-03-01 02:52:23 +00:00
if err != nil {
return err
}
2020-03-26 02:50:56 +00:00
cfg := & ffiwrapper . Config {
2020-03-01 02:52:23 +00:00
SealProofType : spt ,
}
2020-03-26 02:50:56 +00:00
sb , err := ffiwrapper . New ( nil , cfg )
2020-03-01 02:52:23 +00:00
if err != nil {
return err
}
start := time . Now ( )
2020-03-18 01:08:11 +00:00
proof , err := sb . SealCommit2 ( context . TODO ( ) , abi . SectorID { Miner : abi . ActorID ( mid ) , Number : abi . SectorNumber ( c2in . SectorNum ) } , c2in . Phase1Out )
2020-03-01 02:52:23 +00:00
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
} ,
}
2020-02-10 19:16:36 +00:00
func bps ( data abi . SectorSize , d time . Duration ) string {
bdata := new ( big . Int ) . SetUint64 ( uint64 ( data ) )
2019-12-10 19:53:39 +00:00
bdata = bdata . Mul ( bdata , big . NewInt ( time . Second . Nanoseconds ( ) ) )
bps := bdata . Div ( bdata , big . NewInt ( d . Nanoseconds ( ) ) )
2020-02-10 19:16:36 +00:00
return types . SizeStr ( types . BigInt { bps } ) + "/s"
2019-12-10 18:04:13 +00:00
}