2021-11-29 13:42:20 +00:00
package storiface
2020-03-23 11:40:02 +00:00
import (
2021-11-29 13:42:20 +00:00
"fmt"
"reflect"
2021-09-01 03:08:10 +00:00
"strconv"
2021-11-29 13:42:20 +00:00
"strings"
2021-09-01 03:08:10 +00:00
2022-08-29 13:57:58 +00:00
logging "github.com/ipfs/go-log/v2"
2021-11-29 13:42:20 +00:00
"golang.org/x/xerrors"
2020-03-27 20:08:06 +00:00
2021-11-29 13:42:20 +00:00
"github.com/filecoin-project/go-state-types/abi"
2022-06-14 15:00:51 +00:00
2022-06-14 18:03:38 +00:00
"github.com/filecoin-project/lotus/storage/sealer/sealtasks"
2020-03-23 11:40:02 +00:00
)
2022-08-29 13:57:58 +00:00
var log = logging . Logger ( "resources" )
2020-03-23 11:40:02 +00:00
type Resources struct {
2021-11-29 13:42:20 +00:00
MinMemory uint64 ` envname:"MIN_MEMORY" ` // What Must be in RAM for decent perf
2021-11-30 19:50:34 +00:00
MaxMemory uint64 ` envname:"MAX_MEMORY" ` // Memory required (swap + ram; peak memory usage during task execution)
2020-03-23 11:40:02 +00:00
2021-11-29 11:40:54 +00:00
// GPUUtilization specifes the number of GPUs a task can use
2021-11-29 13:42:20 +00:00
GPUUtilization float64 ` envname:"GPU_UTILIZATION" `
2020-03-23 11:40:02 +00:00
2021-11-29 11:40:54 +00:00
// MaxParallelism specifies the number of CPU cores when GPU is NOT in use
2021-11-29 13:42:20 +00:00
MaxParallelism int ` envname:"MAX_PARALLELISM" ` // -1 = multithread
2021-11-29 11:40:54 +00:00
// MaxParallelismGPU specifies the number of CPU cores when GPU is in use
2021-11-29 13:42:20 +00:00
MaxParallelismGPU int ` envname:"MAX_PARALLELISM_GPU" ` // when 0, inherits MaxParallelism
2021-11-29 11:40:54 +00:00
2021-11-29 13:42:20 +00:00
BaseMinMemory uint64 ` envname:"BASE_MIN_MEMORY" ` // What Must be in RAM for decent perf (shared between threads)
2022-05-25 12:44:11 +00:00
MaxConcurrent int ` envname:"MAX_CONCURRENT" ` // Maximum number of tasks of this type that can be scheduled on a worker (0=default, no limit)
2020-03-23 11:40:02 +00:00
}
2020-09-30 22:27:54 +00:00
/ *
2022-08-29 13:57:58 +00:00
Percent of threads to allocate to parallel tasks
12 * 0.92 = 11
16 * 0.92 = 14
24 * 0.92 = 22
32 * 0.92 = 29
64 * 0.92 = 58
128 * 0.92 = 117
2020-09-30 22:27:54 +00:00
* /
var ParallelNum uint64 = 92
var ParallelDenom uint64 = 100
// TODO: Take NUMA into account
2021-11-29 11:40:54 +00:00
func ( r Resources ) Threads ( wcpus uint64 , gpus int ) uint64 {
mp := r . MaxParallelism
if r . GPUUtilization > 0 && gpus > 0 && r . MaxParallelismGPU != 0 { // task can use GPUs and worker has some
mp = r . MaxParallelismGPU
}
if mp == - 1 {
2020-09-30 22:27:54 +00:00
n := ( wcpus * ParallelNum ) / ParallelDenom
if n == 0 {
return wcpus
}
return n
}
2021-11-29 11:40:54 +00:00
return uint64 ( mp )
2020-04-27 18:37:31 +00:00
}
2020-06-15 12:32:17 +00:00
var ResourceTable = map [ sealtasks . TaskType ] map [ abi . RegisteredSealProof ] Resources {
2020-03-23 11:40:02 +00:00
sealtasks . TTAddPiece : {
2020-08-28 16:26:17 +00:00
abi . RegisteredSealProof_StackedDrg64GiBV1 : Resources {
MaxMemory : 8 << 30 ,
MinMemory : 8 << 30 ,
2020-05-08 20:32:34 +00:00
2020-09-30 22:27:54 +00:00
MaxParallelism : 1 ,
2020-05-08 20:32:34 +00:00
BaseMinMemory : 1 << 30 ,
} ,
2020-08-28 16:26:17 +00:00
abi . RegisteredSealProof_StackedDrg32GiBV1 : Resources {
MaxMemory : 4 << 30 ,
MinMemory : 4 << 30 ,
2020-03-23 11:40:02 +00:00
2020-09-30 22:27:54 +00:00
MaxParallelism : 1 ,
2020-03-23 11:40:02 +00:00
BaseMinMemory : 1 << 30 ,
} ,
2020-06-15 12:32:17 +00:00
abi . RegisteredSealProof_StackedDrg512MiBV1 : Resources {
2020-03-23 11:40:02 +00:00
MaxMemory : 1 << 30 ,
MinMemory : 1 << 30 ,
2020-09-30 22:27:54 +00:00
MaxParallelism : 1 ,
2020-03-23 11:40:02 +00:00
BaseMinMemory : 1 << 30 ,
} ,
2020-06-15 12:32:17 +00:00
abi . RegisteredSealProof_StackedDrg2KiBV1 : Resources {
2020-04-01 21:24:09 +00:00
MaxMemory : 2 << 10 ,
MinMemory : 2 << 10 ,
2020-04-01 18:56:32 +00:00
2020-09-30 22:27:54 +00:00
MaxParallelism : 1 ,
2020-04-01 18:56:32 +00:00
2020-04-01 21:24:09 +00:00
BaseMinMemory : 2 << 10 ,
2020-04-01 18:56:32 +00:00
} ,
2020-06-15 12:32:17 +00:00
abi . RegisteredSealProof_StackedDrg8MiBV1 : Resources {
2020-04-01 23:26:47 +00:00
MaxMemory : 8 << 20 ,
MinMemory : 8 << 20 ,
2020-04-01 18:56:32 +00:00
2020-09-30 22:27:54 +00:00
MaxParallelism : 1 ,
2020-04-01 18:56:32 +00:00
2020-04-01 23:26:47 +00:00
BaseMinMemory : 8 << 20 ,
2020-04-01 18:56:32 +00:00
} ,
2020-03-23 11:40:02 +00:00
} ,
sealtasks . TTPreCommit1 : {
2020-06-15 12:32:17 +00:00
abi . RegisteredSealProof_StackedDrg64GiBV1 : Resources {
2020-05-08 20:32:34 +00:00
MaxMemory : 128 << 30 ,
2020-06-30 17:26:56 +00:00
MinMemory : 112 << 30 ,
2020-05-08 20:32:34 +00:00
2020-09-30 22:27:54 +00:00
MaxParallelism : 1 ,
2020-05-08 20:32:34 +00:00
2020-06-30 17:26:56 +00:00
BaseMinMemory : 10 << 20 ,
2020-05-08 20:32:34 +00:00
} ,
2020-06-15 12:32:17 +00:00
abi . RegisteredSealProof_StackedDrg32GiBV1 : Resources {
2020-03-23 11:40:02 +00:00
MaxMemory : 64 << 30 ,
2020-06-30 17:26:56 +00:00
MinMemory : 56 << 30 ,
2020-03-23 11:40:02 +00:00
2020-09-30 22:27:54 +00:00
MaxParallelism : 1 ,
2020-03-23 11:40:02 +00:00
2020-06-30 17:26:56 +00:00
BaseMinMemory : 10 << 20 ,
2020-03-23 11:40:02 +00:00
} ,
2020-06-15 12:32:17 +00:00
abi . RegisteredSealProof_StackedDrg512MiBV1 : Resources {
2020-06-30 17:26:56 +00:00
MaxMemory : 1 << 30 ,
MinMemory : 768 << 20 ,
2020-03-23 11:40:02 +00:00
2020-09-30 22:27:54 +00:00
MaxParallelism : 1 ,
2020-03-23 11:40:02 +00:00
2020-06-30 17:26:56 +00:00
BaseMinMemory : 1 << 20 ,
2020-03-23 11:40:02 +00:00
} ,
2020-06-15 12:32:17 +00:00
abi . RegisteredSealProof_StackedDrg2KiBV1 : Resources {
2020-04-01 21:24:09 +00:00
MaxMemory : 2 << 10 ,
MinMemory : 2 << 10 ,
2020-04-01 18:56:32 +00:00
2020-09-30 22:27:54 +00:00
MaxParallelism : 1 ,
2020-04-01 18:56:32 +00:00
2020-04-01 21:24:09 +00:00
BaseMinMemory : 2 << 10 ,
2020-04-01 18:56:32 +00:00
} ,
2020-06-15 12:32:17 +00:00
abi . RegisteredSealProof_StackedDrg8MiBV1 : Resources {
2020-04-01 23:26:47 +00:00
MaxMemory : 8 << 20 ,
MinMemory : 8 << 20 ,
2020-04-01 18:56:32 +00:00
2020-09-30 22:27:54 +00:00
MaxParallelism : 1 ,
2020-04-01 18:56:32 +00:00
2020-04-01 23:26:47 +00:00
BaseMinMemory : 8 << 20 ,
2020-04-01 18:56:32 +00:00
} ,
2020-03-23 11:40:02 +00:00
} ,
sealtasks . TTPreCommit2 : {
2020-06-15 12:32:17 +00:00
abi . RegisteredSealProof_StackedDrg64GiBV1 : Resources {
2020-09-30 22:54:53 +00:00
MaxMemory : 30 << 30 ,
MinMemory : 30 << 30 ,
2020-05-08 20:32:34 +00:00
2021-11-29 11:40:54 +00:00
MaxParallelism : - 1 ,
MaxParallelismGPU : 6 ,
GPUUtilization : 1.0 ,
2020-05-08 20:32:34 +00:00
2020-09-30 22:54:53 +00:00
BaseMinMemory : 1 << 30 ,
2020-05-08 20:32:34 +00:00
} ,
2020-06-15 12:32:17 +00:00
abi . RegisteredSealProof_StackedDrg32GiBV1 : Resources {
2020-09-30 22:54:53 +00:00
MaxMemory : 15 << 30 ,
MinMemory : 15 << 30 ,
2020-03-23 11:40:02 +00:00
2021-11-29 11:40:54 +00:00
MaxParallelism : - 1 ,
MaxParallelismGPU : 6 ,
GPUUtilization : 1.0 ,
2020-03-23 11:40:02 +00:00
2020-09-30 22:54:53 +00:00
BaseMinMemory : 1 << 30 ,
2020-03-23 11:40:02 +00:00
} ,
2020-06-15 12:32:17 +00:00
abi . RegisteredSealProof_StackedDrg512MiBV1 : Resources {
2020-03-23 11:40:02 +00:00
MaxMemory : 3 << 29 , // 1.5G
MinMemory : 1 << 30 ,
2020-09-30 22:27:54 +00:00
MaxParallelism : - 1 ,
2020-03-23 11:40:02 +00:00
BaseMinMemory : 1 << 30 ,
} ,
2020-06-15 12:32:17 +00:00
abi . RegisteredSealProof_StackedDrg2KiBV1 : Resources {
2020-04-01 21:24:09 +00:00
MaxMemory : 2 << 10 ,
MinMemory : 2 << 10 ,
2020-04-01 18:56:32 +00:00
2020-09-30 22:27:54 +00:00
MaxParallelism : - 1 ,
2020-04-01 18:56:32 +00:00
2020-04-01 21:24:09 +00:00
BaseMinMemory : 2 << 10 ,
2020-04-01 18:56:32 +00:00
} ,
2020-06-15 12:32:17 +00:00
abi . RegisteredSealProof_StackedDrg8MiBV1 : Resources {
2020-04-01 23:26:47 +00:00
MaxMemory : 8 << 20 ,
MinMemory : 8 << 20 ,
2020-04-01 18:56:32 +00:00
2020-09-30 22:27:54 +00:00
MaxParallelism : - 1 ,
2020-04-01 18:56:32 +00:00
2020-04-01 23:26:47 +00:00
BaseMinMemory : 8 << 20 ,
2020-04-01 18:56:32 +00:00
} ,
2020-03-23 11:40:02 +00:00
} ,
sealtasks . TTCommit1 : { // Very short (~100ms), so params are very light
2020-06-15 12:32:17 +00:00
abi . RegisteredSealProof_StackedDrg64GiBV1 : Resources {
2020-05-08 20:32:34 +00:00
MaxMemory : 1 << 30 ,
MinMemory : 1 << 30 ,
2020-09-30 22:27:54 +00:00
MaxParallelism : 0 ,
2020-05-08 20:32:34 +00:00
BaseMinMemory : 1 << 30 ,
} ,
2020-06-15 12:32:17 +00:00
abi . RegisteredSealProof_StackedDrg32GiBV1 : Resources {
2020-03-23 11:40:02 +00:00
MaxMemory : 1 << 30 ,
MinMemory : 1 << 30 ,
2020-09-30 22:27:54 +00:00
MaxParallelism : 0 ,
2020-03-23 11:40:02 +00:00
BaseMinMemory : 1 << 30 ,
} ,
2020-06-15 12:32:17 +00:00
abi . RegisteredSealProof_StackedDrg512MiBV1 : Resources {
2020-03-23 11:40:02 +00:00
MaxMemory : 1 << 30 ,
MinMemory : 1 << 30 ,
2020-09-30 22:27:54 +00:00
MaxParallelism : 0 ,
2020-03-23 11:40:02 +00:00
BaseMinMemory : 1 << 30 ,
} ,
2020-06-15 12:32:17 +00:00
abi . RegisteredSealProof_StackedDrg2KiBV1 : Resources {
2020-04-01 21:24:09 +00:00
MaxMemory : 2 << 10 ,
MinMemory : 2 << 10 ,
2020-04-01 18:56:32 +00:00
2020-09-30 22:27:54 +00:00
MaxParallelism : 0 ,
2020-04-01 18:56:32 +00:00
2020-04-01 21:24:09 +00:00
BaseMinMemory : 2 << 10 ,
2020-04-01 18:56:32 +00:00
} ,
2020-06-15 12:32:17 +00:00
abi . RegisteredSealProof_StackedDrg8MiBV1 : Resources {
2020-04-01 23:26:47 +00:00
MaxMemory : 8 << 20 ,
MinMemory : 8 << 20 ,
2020-04-01 18:56:32 +00:00
2020-09-30 22:27:54 +00:00
MaxParallelism : 0 ,
2020-04-01 18:56:32 +00:00
2020-04-01 23:26:47 +00:00
BaseMinMemory : 8 << 20 ,
2020-04-01 18:56:32 +00:00
} ,
2020-03-23 11:40:02 +00:00
} ,
2020-05-07 22:22:37 +00:00
sealtasks . TTCommit2 : {
2020-06-15 12:32:17 +00:00
abi . RegisteredSealProof_StackedDrg64GiBV1 : Resources {
2020-06-30 17:26:56 +00:00
MaxMemory : 190 << 30 , // TODO: Confirm
2020-05-15 12:33:04 +00:00
MinMemory : 60 << 30 ,
2020-05-08 20:32:34 +00:00
2021-11-29 11:40:54 +00:00
MaxParallelism : - 1 ,
MaxParallelismGPU : 6 ,
GPUUtilization : 1.0 ,
2020-05-08 20:32:34 +00:00
2020-05-16 21:03:29 +00:00
BaseMinMemory : 64 << 30 , // params
2020-05-08 20:32:34 +00:00
} ,
2020-06-15 12:32:17 +00:00
abi . RegisteredSealProof_StackedDrg32GiBV1 : Resources {
2020-05-16 21:03:29 +00:00
MaxMemory : 150 << 30 , // TODO: ~30G of this should really be BaseMaxMemory
2020-05-15 12:33:04 +00:00
MinMemory : 30 << 30 ,
2020-03-23 11:40:02 +00:00
2021-11-29 11:40:54 +00:00
MaxParallelism : - 1 ,
MaxParallelismGPU : 6 ,
GPUUtilization : 1.0 ,
2020-03-23 11:40:02 +00:00
2020-05-16 21:03:29 +00:00
BaseMinMemory : 32 << 30 , // params
2020-03-23 11:40:02 +00:00
} ,
2020-06-15 12:32:17 +00:00
abi . RegisteredSealProof_StackedDrg512MiBV1 : Resources {
2020-03-23 11:40:02 +00:00
MaxMemory : 3 << 29 , // 1.5G
MinMemory : 1 << 30 ,
2020-09-30 22:27:54 +00:00
MaxParallelism : 1 , // This is fine
2021-09-01 01:59:25 +00:00
GPUUtilization : 1.0 ,
2020-03-23 11:40:02 +00:00
BaseMinMemory : 10 << 30 ,
} ,
2020-06-15 12:32:17 +00:00
abi . RegisteredSealProof_StackedDrg2KiBV1 : Resources {
2020-04-01 21:24:09 +00:00
MaxMemory : 2 << 10 ,
MinMemory : 2 << 10 ,
2020-04-01 18:56:32 +00:00
2020-09-30 22:27:54 +00:00
MaxParallelism : 1 ,
2021-09-01 01:59:25 +00:00
GPUUtilization : 1.0 ,
2020-03-23 11:40:02 +00:00
2020-04-01 21:24:09 +00:00
BaseMinMemory : 2 << 10 ,
2020-04-01 18:56:32 +00:00
} ,
2020-06-15 12:32:17 +00:00
abi . RegisteredSealProof_StackedDrg8MiBV1 : Resources {
2020-04-01 23:26:47 +00:00
MaxMemory : 8 << 20 ,
MinMemory : 8 << 20 ,
2020-04-01 18:56:32 +00:00
2020-09-30 22:27:54 +00:00
MaxParallelism : 1 ,
2021-09-01 01:59:25 +00:00
GPUUtilization : 1.0 ,
2020-03-23 11:40:02 +00:00
2020-04-01 23:26:47 +00:00
BaseMinMemory : 8 << 20 ,
2020-04-01 18:56:32 +00:00
} ,
} ,
2020-04-27 18:37:31 +00:00
sealtasks . TTFetch : {
2020-06-15 12:32:17 +00:00
abi . RegisteredSealProof_StackedDrg64GiBV1 : Resources {
2020-05-08 20:32:34 +00:00
MaxMemory : 1 << 20 ,
MinMemory : 1 << 20 ,
2020-09-30 22:27:54 +00:00
MaxParallelism : 0 ,
2021-09-01 01:59:25 +00:00
GPUUtilization : 0 ,
2020-05-08 20:32:34 +00:00
BaseMinMemory : 0 ,
} ,
2020-06-15 12:32:17 +00:00
abi . RegisteredSealProof_StackedDrg32GiBV1 : Resources {
2020-04-27 18:37:31 +00:00
MaxMemory : 1 << 20 ,
MinMemory : 1 << 20 ,
2020-09-30 22:27:54 +00:00
MaxParallelism : 0 ,
2021-09-01 01:59:25 +00:00
GPUUtilization : 0 ,
2020-04-27 18:37:31 +00:00
BaseMinMemory : 0 ,
} ,
2020-06-15 12:32:17 +00:00
abi . RegisteredSealProof_StackedDrg512MiBV1 : Resources {
2020-04-27 18:37:31 +00:00
MaxMemory : 1 << 20 ,
MinMemory : 1 << 20 ,
2020-09-30 22:27:54 +00:00
MaxParallelism : 0 ,
2021-09-01 01:59:25 +00:00
GPUUtilization : 0 ,
2020-04-27 18:37:31 +00:00
BaseMinMemory : 0 ,
} ,
2020-06-15 12:32:17 +00:00
abi . RegisteredSealProof_StackedDrg2KiBV1 : Resources {
2020-04-27 18:37:31 +00:00
MaxMemory : 1 << 20 ,
MinMemory : 1 << 20 ,
2020-09-30 22:27:54 +00:00
MaxParallelism : 0 ,
2021-09-01 01:59:25 +00:00
GPUUtilization : 0 ,
2020-04-27 18:37:31 +00:00
BaseMinMemory : 0 ,
} ,
2020-06-15 12:32:17 +00:00
abi . RegisteredSealProof_StackedDrg8MiBV1 : Resources {
2020-04-27 18:37:31 +00:00
MaxMemory : 1 << 20 ,
MinMemory : 1 << 20 ,
2020-09-30 22:27:54 +00:00
MaxParallelism : 0 ,
2021-09-01 01:59:25 +00:00
GPUUtilization : 0 ,
2020-04-27 18:37:31 +00:00
BaseMinMemory : 0 ,
} ,
} ,
2022-01-18 15:39:02 +00:00
// TODO: this should ideally be the actual replica update proof types
// TODO: actually measure this (and all the other replica update work)
sealtasks . TTReplicaUpdate : { // copied from addpiece
abi . RegisteredSealProof_StackedDrg64GiBV1 : Resources {
MaxMemory : 8 << 30 ,
MinMemory : 8 << 30 ,
2023-05-03 16:28:03 +00:00
MaxParallelism : 1 ,
MaxParallelismGPU : 6 ,
GPUUtilization : 1.0 ,
2022-01-18 15:39:02 +00:00
BaseMinMemory : 1 << 30 ,
} ,
abi . RegisteredSealProof_StackedDrg32GiBV1 : Resources {
MaxMemory : 4 << 30 ,
MinMemory : 4 << 30 ,
2023-05-03 16:28:03 +00:00
MaxParallelism : 1 ,
MaxParallelismGPU : 6 ,
GPUUtilization : 1.0 ,
2022-01-18 15:39:02 +00:00
BaseMinMemory : 1 << 30 ,
} ,
abi . RegisteredSealProof_StackedDrg512MiBV1 : Resources {
MaxMemory : 1 << 30 ,
MinMemory : 1 << 30 ,
MaxParallelism : 1 ,
2023-05-03 16:28:03 +00:00
GPUUtilization : 1.0 ,
2022-01-18 15:39:02 +00:00
BaseMinMemory : 1 << 30 ,
} ,
abi . RegisteredSealProof_StackedDrg2KiBV1 : Resources {
MaxMemory : 2 << 10 ,
MinMemory : 2 << 10 ,
MaxParallelism : 1 ,
2023-05-03 16:28:03 +00:00
GPUUtilization : 1.0 ,
2022-01-18 15:39:02 +00:00
BaseMinMemory : 2 << 10 ,
} ,
abi . RegisteredSealProof_StackedDrg8MiBV1 : Resources {
MaxMemory : 8 << 20 ,
MinMemory : 8 << 20 ,
MaxParallelism : 1 ,
2023-05-03 16:28:03 +00:00
GPUUtilization : 1.0 ,
2022-01-18 15:39:02 +00:00
BaseMinMemory : 8 << 20 ,
} ,
} ,
sealtasks . TTProveReplicaUpdate1 : { // copied from commit1
abi . RegisteredSealProof_StackedDrg64GiBV1 : Resources {
MaxMemory : 1 << 30 ,
MinMemory : 1 << 30 ,
MaxParallelism : 0 ,
BaseMinMemory : 1 << 30 ,
} ,
abi . RegisteredSealProof_StackedDrg32GiBV1 : Resources {
MaxMemory : 1 << 30 ,
MinMemory : 1 << 30 ,
MaxParallelism : 0 ,
BaseMinMemory : 1 << 30 ,
} ,
abi . RegisteredSealProof_StackedDrg512MiBV1 : Resources {
MaxMemory : 1 << 30 ,
MinMemory : 1 << 30 ,
MaxParallelism : 0 ,
BaseMinMemory : 1 << 30 ,
} ,
abi . RegisteredSealProof_StackedDrg2KiBV1 : Resources {
MaxMemory : 2 << 10 ,
MinMemory : 2 << 10 ,
MaxParallelism : 0 ,
BaseMinMemory : 2 << 10 ,
} ,
abi . RegisteredSealProof_StackedDrg8MiBV1 : Resources {
MaxMemory : 8 << 20 ,
MinMemory : 8 << 20 ,
MaxParallelism : 0 ,
BaseMinMemory : 8 << 20 ,
} ,
} ,
sealtasks . TTProveReplicaUpdate2 : { // copied from commit2
abi . RegisteredSealProof_StackedDrg64GiBV1 : Resources {
MaxMemory : 190 << 30 , // TODO: Confirm
MinMemory : 60 << 30 ,
MaxParallelism : - 1 ,
MaxParallelismGPU : 6 ,
GPUUtilization : 1.0 ,
BaseMinMemory : 64 << 30 , // params
} ,
abi . RegisteredSealProof_StackedDrg32GiBV1 : Resources {
MaxMemory : 150 << 30 , // TODO: ~30G of this should really be BaseMaxMemory
MinMemory : 30 << 30 ,
MaxParallelism : - 1 ,
MaxParallelismGPU : 6 ,
GPUUtilization : 1.0 ,
BaseMinMemory : 32 << 30 , // params
} ,
abi . RegisteredSealProof_StackedDrg512MiBV1 : Resources {
MaxMemory : 3 << 29 , // 1.5G
MinMemory : 1 << 30 ,
MaxParallelism : 1 , // This is fine
GPUUtilization : 1.0 ,
BaseMinMemory : 10 << 30 ,
} ,
abi . RegisteredSealProof_StackedDrg2KiBV1 : Resources {
MaxMemory : 2 << 10 ,
MinMemory : 2 << 10 ,
MaxParallelism : 1 ,
GPUUtilization : 1.0 ,
BaseMinMemory : 2 << 10 ,
} ,
abi . RegisteredSealProof_StackedDrg8MiBV1 : Resources {
MaxMemory : 8 << 20 ,
MinMemory : 8 << 20 ,
MaxParallelism : 1 ,
GPUUtilization : 1.0 ,
2022-01-20 12:15:45 +00:00
BaseMinMemory : 8 << 20 ,
} ,
} ,
2022-01-18 14:53:13 +00:00
sealtasks . TTGenerateWindowPoSt : {
abi . RegisteredSealProof_StackedDrg64GiBV1 : Resources {
MaxMemory : 120 << 30 , // TODO: Confirm
MinMemory : 60 << 30 ,
MaxParallelism : - 1 ,
MaxParallelismGPU : 6 ,
GPUUtilization : 1.0 ,
BaseMinMemory : 64 << 30 , // params
} ,
abi . RegisteredSealProof_StackedDrg32GiBV1 : Resources {
MaxMemory : 96 << 30 ,
MinMemory : 30 << 30 ,
MaxParallelism : - 1 ,
MaxParallelismGPU : 6 ,
GPUUtilization : 1.0 ,
BaseMinMemory : 32 << 30 , // params
} ,
abi . RegisteredSealProof_StackedDrg512MiBV1 : Resources {
MaxMemory : 3 << 29 , // 1.5G
MinMemory : 1 << 30 ,
MaxParallelism : 1 , // This is fine
GPUUtilization : 1.0 ,
BaseMinMemory : 10 << 30 ,
} ,
abi . RegisteredSealProof_StackedDrg2KiBV1 : Resources {
MaxMemory : 2 << 10 ,
MinMemory : 2 << 10 ,
MaxParallelism : 1 ,
GPUUtilization : 1.0 ,
BaseMinMemory : 2 << 10 ,
} ,
abi . RegisteredSealProof_StackedDrg8MiBV1 : Resources {
MaxMemory : 8 << 20 ,
MinMemory : 8 << 20 ,
MaxParallelism : 1 ,
GPUUtilization : 1.0 ,
BaseMinMemory : 8 << 20 ,
} ,
} ,
sealtasks . TTGenerateWinningPoSt : {
abi . RegisteredSealProof_StackedDrg64GiBV1 : Resources {
MaxMemory : 1 << 30 ,
MinMemory : 1 << 30 ,
MaxParallelism : - 1 ,
MaxParallelismGPU : 6 ,
GPUUtilization : 1.0 ,
BaseMinMemory : 64 << 30 , // params
} ,
abi . RegisteredSealProof_StackedDrg32GiBV1 : Resources {
MaxMemory : 1 << 30 ,
MinMemory : 1 << 30 ,
MaxParallelism : - 1 ,
MaxParallelismGPU : 6 ,
GPUUtilization : 1.0 ,
BaseMinMemory : 32 << 30 , // params
} ,
abi . RegisteredSealProof_StackedDrg512MiBV1 : Resources {
MaxMemory : 2 << 10 ,
MinMemory : 2 << 10 ,
MaxParallelism : 1 , // This is fine
GPUUtilization : 1.0 ,
BaseMinMemory : 10 << 30 ,
} ,
abi . RegisteredSealProof_StackedDrg2KiBV1 : Resources {
MaxMemory : 2 << 10 ,
MinMemory : 2 << 10 ,
MaxParallelism : 1 ,
GPUUtilization : 1.0 ,
BaseMinMemory : 2 << 10 ,
} ,
abi . RegisteredSealProof_StackedDrg8MiBV1 : Resources {
MaxMemory : 8 << 20 ,
MinMemory : 8 << 20 ,
MaxParallelism : 1 ,
GPUUtilization : 1.0 ,
BaseMinMemory : 8 << 20 ,
} ,
} ,
2020-03-23 11:40:02 +00:00
}
2020-05-14 01:01:38 +00:00
func init ( ) {
ResourceTable [ sealtasks . TTUnseal ] = ResourceTable [ sealtasks . TTPreCommit1 ] // TODO: measure accurately
2022-01-18 15:39:02 +00:00
ResourceTable [ sealtasks . TTRegenSectorKey ] = ResourceTable [ sealtasks . TTReplicaUpdate ]
2022-08-29 14:12:02 +00:00
// DataCid doesn't care about sector proof type; Use 32G AddPiece resource definition
2022-08-29 14:25:30 +00:00
ResourceTable [ sealtasks . TTDataCid ] = map [ abi . RegisteredSealProof ] Resources { }
2022-08-29 14:12:02 +00:00
for proof := range ResourceTable [ sealtasks . TTAddPiece ] {
ResourceTable [ sealtasks . TTDataCid ] [ proof ] = ResourceTable [ sealtasks . TTAddPiece ] [ abi . RegisteredSealProof_StackedDrg32GiBV1 ]
}
2020-11-04 20:29:08 +00:00
2023-08-29 11:08:00 +00:00
// V1_1 and SynthethicpoRep is the same as V1
2020-11-04 20:29:08 +00:00
for _ , m := range ResourceTable {
m [ abi . RegisteredSealProof_StackedDrg2KiBV1_1 ] = m [ abi . RegisteredSealProof_StackedDrg2KiBV1 ]
2023-08-29 11:08:00 +00:00
m [ abi . RegisteredSealProof_StackedDrg2KiBV1_1_Feat_SyntheticPoRep ] = m [ abi . RegisteredSealProof_StackedDrg2KiBV1 ]
2020-11-04 20:29:08 +00:00
m [ abi . RegisteredSealProof_StackedDrg8MiBV1_1 ] = m [ abi . RegisteredSealProof_StackedDrg8MiBV1 ]
2023-08-29 11:08:00 +00:00
m [ abi . RegisteredSealProof_StackedDrg8MiBV1_1_Feat_SyntheticPoRep ] = m [ abi . RegisteredSealProof_StackedDrg8MiBV1 ]
2020-11-04 20:29:08 +00:00
m [ abi . RegisteredSealProof_StackedDrg512MiBV1_1 ] = m [ abi . RegisteredSealProof_StackedDrg512MiBV1 ]
2023-08-29 11:08:00 +00:00
m [ abi . RegisteredSealProof_StackedDrg512MiBV1_1_Feat_SyntheticPoRep ] = m [ abi . RegisteredSealProof_StackedDrg512MiBV1 ]
2020-11-04 20:29:08 +00:00
m [ abi . RegisteredSealProof_StackedDrg32GiBV1_1 ] = m [ abi . RegisteredSealProof_StackedDrg32GiBV1 ]
2023-08-29 11:08:00 +00:00
m [ abi . RegisteredSealProof_StackedDrg32GiBV1_1_Feat_SyntheticPoRep ] = m [ abi . RegisteredSealProof_StackedDrg32GiBV1 ]
2020-11-04 20:29:08 +00:00
m [ abi . RegisteredSealProof_StackedDrg64GiBV1_1 ] = m [ abi . RegisteredSealProof_StackedDrg64GiBV1 ]
2023-08-29 11:08:00 +00:00
m [ abi . RegisteredSealProof_StackedDrg64GiBV1_1_Feat_SyntheticPoRep ] = m [ abi . RegisteredSealProof_StackedDrg64GiBV1 ]
2020-11-04 20:29:08 +00:00
}
2020-05-14 01:01:38 +00:00
}
2021-11-29 13:42:20 +00:00
2021-11-29 14:14:57 +00:00
func ParseResourceEnv ( lookup func ( key , def string ) ( string , bool ) ) ( map [ sealtasks . TaskType ] map [ abi . RegisteredSealProof ] Resources , error ) {
2021-11-29 13:42:20 +00:00
out := map [ sealtasks . TaskType ] map [ abi . RegisteredSealProof ] Resources { }
for taskType , defTT := range ResourceTable {
out [ taskType ] = map [ abi . RegisteredSealProof ] Resources { }
for spt , defRes := range defTT {
r := defRes // copy
spsz , err := spt . SectorSize ( )
if err != nil {
return nil , xerrors . Errorf ( "getting sector size: %w" , err )
}
shortSize := strings . TrimSuffix ( spsz . ShortString ( ) , "iB" )
rr := reflect . ValueOf ( & r )
for i := 0 ; i < rr . Elem ( ) . Type ( ) . NumField ( ) ; i ++ {
f := rr . Elem ( ) . Type ( ) . Field ( i )
envname := f . Tag . Get ( "envname" )
if envname == "" {
return nil , xerrors . Errorf ( "no envname for field '%s'" , f . Name )
}
2021-11-29 13:46:41 +00:00
envval , found := lookup ( taskType . Short ( ) + "_" + shortSize + "_" + envname , fmt . Sprint ( rr . Elem ( ) . Field ( i ) . Interface ( ) ) )
2021-11-29 13:42:20 +00:00
if ! found {
2022-08-29 13:57:58 +00:00
// see if a non-size-specific envvar is set
envval , found = lookup ( taskType . Short ( ) + "_" + envname , fmt . Sprint ( rr . Elem ( ) . Field ( i ) . Interface ( ) ) )
if ! found {
// special multicore SDR handling
if ( taskType == sealtasks . TTPreCommit1 || taskType == sealtasks . TTUnseal ) && envname == "MAX_PARALLELISM" {
v , ok := rr . Elem ( ) . Field ( i ) . Addr ( ) . Interface ( ) . ( * int )
if ! ok {
// can't happen, but let's not panic
return nil , xerrors . Errorf ( "res.MAX_PARALLELISM is not int (!?): %w" , err )
}
* v , err = getSDRThreads ( lookup )
if err != nil {
return nil , err
}
2021-11-29 13:42:20 +00:00
}
2022-08-29 13:57:58 +00:00
continue
2021-11-29 13:42:20 +00:00
}
2022-08-29 13:57:58 +00:00
} else {
if ! taskType . SectorSized ( ) {
log . Errorw ( "sector-size independent task resource var specified with sector-sized envvar" , "env" , taskType . Short ( ) + "_" + shortSize + "_" + envname , "use" , taskType . Short ( ) + "_" + envname )
}
2021-11-29 13:42:20 +00:00
}
v := rr . Elem ( ) . Field ( i ) . Addr ( ) . Interface ( )
switch fv := v . ( type ) {
case * uint64 :
* fv , err = strconv . ParseUint ( envval , 10 , 64 )
case * int :
* fv , err = strconv . Atoi ( envval )
case * float64 :
* fv , err = strconv . ParseFloat ( envval , 64 )
default :
return nil , xerrors . Errorf ( "unknown resource field type" )
}
}
out [ taskType ] [ spt ] = r
}
}
return out , nil
}
func getSDRThreads ( lookup func ( key , def string ) ( string , bool ) ) ( _ int , err error ) {
producers := 0
if v , _ := lookup ( "FIL_PROOFS_USE_MULTICORE_SDR" , "" ) ; v == "1" {
producers = 3
if penv , found := lookup ( "FIL_PROOFS_MULTICORE_SDR_PRODUCERS" , "" ) ; found {
producers , err = strconv . Atoi ( penv )
if err != nil {
return 0 , xerrors . Errorf ( "parsing (atoi) FIL_PROOFS_MULTICORE_SDR_PRODUCERS: %w" , err )
}
}
}
// producers + the one core actually doing the work
2021-11-29 13:46:41 +00:00
return producers + 1 , nil
2021-11-29 13:42:20 +00:00
}