lotus/extern/sector-storage/storiface/resources.go

665 lines
15 KiB
Go
Raw Normal View History

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"
"strconv"
2021-11-29 13:42:20 +00:00
"strings"
2021-11-29 13:42:20 +00:00
"golang.org/x/xerrors"
2021-11-29 13:42:20 +00:00
"github.com/filecoin-project/go-state-types/abi"
"github.com/filecoin-project/lotus/extern/sector-storage/sealtasks"
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
MaxMemory uint64 `envname:"MAX_MEMORY"` // Memory required (swap + ram; peak memory usage during task execution)
2020-03-23 11:40:02 +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
// 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
// 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 13:42:20 +00:00
BaseMinMemory uint64 `envname:"BASE_MIN_MEMORY"` // What Must be in RAM for decent perf (shared between threads)
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
}
/*
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
*/
var ParallelNum uint64 = 92
var ParallelDenom uint64 = 100
// TODO: Take NUMA into account
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 {
n := (wcpus * ParallelNum) / ParallelDenom
if n == 0 {
return wcpus
}
return n
}
return uint64(mp)
}
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: {
abi.RegisteredSealProof_StackedDrg64GiBV1: Resources{
MaxMemory: 8 << 30,
MinMemory: 8 << 30,
2020-05-08 20:32:34 +00:00
MaxParallelism: 1,
2020-05-08 20:32:34 +00:00
BaseMinMemory: 1 << 30,
},
abi.RegisteredSealProof_StackedDrg32GiBV1: Resources{
MaxMemory: 4 << 30,
MinMemory: 4 << 30,
2020-03-23 11:40:02 +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,
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,
MaxParallelism: 1,
2020-04-01 21:24:09 +00:00
BaseMinMemory: 2 << 10,
},
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,
MaxParallelism: 1,
2020-04-01 23:26:47 +00:00
BaseMinMemory: 8 << 20,
},
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,
MinMemory: 112 << 30,
2020-05-08 20:32:34 +00:00
MaxParallelism: 1,
2020-05-08 20:32:34 +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,
MinMemory: 56 << 30,
2020-03-23 11:40:02 +00:00
MaxParallelism: 1,
2020-03-23 11:40:02 +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{
MaxMemory: 1 << 30,
MinMemory: 768 << 20,
2020-03-23 11:40:02 +00:00
MaxParallelism: 1,
2020-03-23 11:40:02 +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,
MaxParallelism: 1,
2020-04-01 21:24:09 +00:00
BaseMinMemory: 2 << 10,
},
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,
MaxParallelism: 1,
2020-04-01 23:26:47 +00:00
BaseMinMemory: 8 << 20,
},
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
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
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,
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,
MaxParallelism: -1,
2020-04-01 21:24:09 +00:00
BaseMinMemory: 2 << 10,
},
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,
MaxParallelism: -1,
2020-04-01 23:26:47 +00:00
BaseMinMemory: 8 << 20,
},
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,
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,
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,
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,
MaxParallelism: 0,
2020-04-01 21:24:09 +00:00
BaseMinMemory: 2 << 10,
},
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,
MaxParallelism: 0,
2020-04-01 23:26:47 +00:00
BaseMinMemory: 8 << 20,
},
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{
MaxMemory: 190 << 30, // TODO: Confirm
MinMemory: 60 << 30,
2020-05-08 20:32:34 +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
MinMemory: 30 << 30,
2020-03-23 11:40:02 +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,
MaxParallelism: 1, // This is fine
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,
MaxParallelism: 1,
GPUUtilization: 1.0,
2020-03-23 11:40:02 +00:00
2020-04-01 21:24:09 +00:00
BaseMinMemory: 2 << 10,
},
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,
MaxParallelism: 1,
GPUUtilization: 1.0,
2020-03-23 11:40:02 +00:00
2020-04-01 23:26:47 +00:00
BaseMinMemory: 8 << 20,
},
},
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,
MaxParallelism: 0,
GPUUtilization: 0,
2020-05-08 20:32:34 +00:00
BaseMinMemory: 0,
},
2020-06-15 12:32:17 +00:00
abi.RegisteredSealProof_StackedDrg32GiBV1: Resources{
MaxMemory: 1 << 20,
MinMemory: 1 << 20,
MaxParallelism: 0,
GPUUtilization: 0,
BaseMinMemory: 0,
},
2020-06-15 12:32:17 +00:00
abi.RegisteredSealProof_StackedDrg512MiBV1: Resources{
MaxMemory: 1 << 20,
MinMemory: 1 << 20,
MaxParallelism: 0,
GPUUtilization: 0,
BaseMinMemory: 0,
},
2020-06-15 12:32:17 +00:00
abi.RegisteredSealProof_StackedDrg2KiBV1: Resources{
MaxMemory: 1 << 20,
MinMemory: 1 << 20,
MaxParallelism: 0,
GPUUtilization: 0,
BaseMinMemory: 0,
},
2020-06-15 12:32:17 +00:00
abi.RegisteredSealProof_StackedDrg8MiBV1: Resources{
MaxMemory: 1 << 20,
MinMemory: 1 << 20,
MaxParallelism: 0,
GPUUtilization: 0,
BaseMinMemory: 0,
},
},
// 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,
MaxParallelism: 1,
BaseMinMemory: 1 << 30,
},
abi.RegisteredSealProof_StackedDrg32GiBV1: Resources{
MaxMemory: 4 << 30,
MinMemory: 4 << 30,
MaxParallelism: 1,
BaseMinMemory: 1 << 30,
},
abi.RegisteredSealProof_StackedDrg512MiBV1: Resources{
MaxMemory: 1 << 30,
MinMemory: 1 << 30,
MaxParallelism: 1,
BaseMinMemory: 1 << 30,
},
abi.RegisteredSealProof_StackedDrg2KiBV1: Resources{
MaxMemory: 2 << 10,
MinMemory: 2 << 10,
MaxParallelism: 1,
BaseMinMemory: 2 << 10,
},
abi.RegisteredSealProof_StackedDrg8MiBV1: Resources{
MaxMemory: 8 << 20,
MinMemory: 8 << 20,
MaxParallelism: 1,
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,
BaseMinMemory: 8 << 20,
},
},
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
ResourceTable[sealtasks.TTRegenSectorKey] = ResourceTable[sealtasks.TTReplicaUpdate]
2022-04-26 16:22:52 +00:00
ResourceTable[sealtasks.TTDataCid] = ResourceTable[sealtasks.TTAddPiece]
// V1_1 is the same as V1
for _, m := range ResourceTable {
m[abi.RegisteredSealProof_StackedDrg2KiBV1_1] = m[abi.RegisteredSealProof_StackedDrg2KiBV1]
m[abi.RegisteredSealProof_StackedDrg8MiBV1_1] = m[abi.RegisteredSealProof_StackedDrg8MiBV1]
m[abi.RegisteredSealProof_StackedDrg512MiBV1_1] = m[abi.RegisteredSealProof_StackedDrg512MiBV1]
m[abi.RegisteredSealProof_StackedDrg32GiBV1_1] = m[abi.RegisteredSealProof_StackedDrg32GiBV1]
m[abi.RegisteredSealProof_StackedDrg64GiBV1_1] = m[abi.RegisteredSealProof_StackedDrg64GiBV1]
}
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 {
// 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
}
}
continue
}
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
}