taskpools: bump (#6757)
* taskpools: bump * better raises effects * get rid of custom naming * bump * oops * bump stable
This commit is contained in:
parent
7d81ee17db
commit
031d24ff41
|
@ -144,7 +144,7 @@ type
|
|||
|
||||
proc new*(
|
||||
T: type BatchCrypto, rng: ref HmacDrbgContext,
|
||||
eager: Eager, genesis_validators_root: Eth2Digest, taskpool: TaskPoolPtr):
|
||||
eager: Eager, genesis_validators_root: Eth2Digest, taskpool: Taskpool):
|
||||
Result[ref BatchCrypto, string] =
|
||||
let res = (ref BatchCrypto)(
|
||||
rng: rng, taskpool: taskpool,
|
||||
|
|
|
@ -169,7 +169,7 @@ proc new*(T: type Eth2Processor,
|
|||
blobQuarantine: ref BlobQuarantine,
|
||||
rng: ref HmacDrbgContext,
|
||||
getBeaconTime: GetBeaconTimeFn,
|
||||
taskpool: TaskPoolPtr
|
||||
taskpool: Taskpool
|
||||
): ref Eth2Processor =
|
||||
(ref Eth2Processor)(
|
||||
doppelgangerDetectionEnabled: doppelgangerDetectionEnabled,
|
||||
|
|
|
@ -291,7 +291,7 @@ proc initFullNode(
|
|||
rng: ref HmacDrbgContext,
|
||||
dag: ChainDAGRef,
|
||||
clist: ChainListRef,
|
||||
taskpool: TaskPoolPtr,
|
||||
taskpool: Taskpool,
|
||||
getBeaconTime: GetBeaconTimeFn) {.async.} =
|
||||
template config(): auto = node.config
|
||||
|
||||
|
@ -654,7 +654,6 @@ proc init*(T: type BeaconNode,
|
|||
metadata: Eth2NetworkMetadata): Future[BeaconNode]
|
||||
{.async.} =
|
||||
var
|
||||
taskpool: TaskPoolPtr
|
||||
genesisState: ref ForkedHashedBeaconState = nil
|
||||
|
||||
template cfg: auto = metadata.cfg
|
||||
|
@ -690,18 +689,20 @@ proc init*(T: type BeaconNode,
|
|||
altair_fork_epoch = metadata.cfg.ALTAIR_FORK_EPOCH
|
||||
quit 1
|
||||
|
||||
let taskpool =
|
||||
try:
|
||||
if config.numThreads < 0:
|
||||
fatal "The number of threads --numThreads cannot be negative."
|
||||
fatal "The number of threads --num-threads cannot be negative."
|
||||
quit 1
|
||||
elif config.numThreads == 0:
|
||||
taskpool = TaskPoolPtr.new(numThreads = min(countProcessors(), 16))
|
||||
Taskpool.new(numThreads = min(countProcessors(), 16))
|
||||
else:
|
||||
taskpool = TaskPoolPtr.new(numThreads = config.numThreads)
|
||||
Taskpool.new(numThreads = config.numThreads)
|
||||
except CatchableError as e:
|
||||
fatal "Cannot start taskpool", err = e.msg
|
||||
quit 1
|
||||
|
||||
info "Threadpool started", numThreads = taskpool.numThreads
|
||||
except Exception:
|
||||
raise newException(Defect, "Failure in taskpool initialization.")
|
||||
|
||||
if metadata.genesis.kind == BakedIn:
|
||||
if config.genesisState.isSome:
|
||||
|
|
|
@ -26,18 +26,16 @@ import
|
|||
export results, rand, altair, phase0, taskpools, signatures
|
||||
|
||||
type
|
||||
TaskPoolPtr* = Taskpool
|
||||
|
||||
BatchVerifier* = object
|
||||
sigVerifCache*: BatchedBLSVerifierCache
|
||||
## A cache for batch BLS signature verification contexts
|
||||
rng*: ref HmacDrbgContext
|
||||
## A reference to the Nimbus application-wide RNG
|
||||
taskpool*: TaskPoolPtr
|
||||
taskpool*: Taskpool
|
||||
|
||||
proc init*(
|
||||
T: type BatchVerifier, rng: ref HmacDrbgContext,
|
||||
taskpool: TaskPoolPtr): BatchVerifier =
|
||||
taskpool: Taskpool): BatchVerifier =
|
||||
BatchVerifier(
|
||||
sigVerifCache: BatchedBLSVerifierCache.init(taskpool),
|
||||
rng: rng,
|
||||
|
@ -46,7 +44,7 @@ proc init*(
|
|||
|
||||
proc new*(
|
||||
T: type BatchVerifier, rng: ref HmacDrbgContext,
|
||||
taskpool: TaskPoolPtr): ref BatchVerifier =
|
||||
taskpool: Taskpool): ref BatchVerifier =
|
||||
(ref BatchVerifier)(
|
||||
sigVerifCache: BatchedBLSVerifierCache.init(taskpool),
|
||||
rng: rng,
|
||||
|
|
|
@ -144,7 +144,7 @@ proc runTest(suiteName, path: string, consensusFork: static ConsensusFork) =
|
|||
lcDataConfig = LightClientDataConfig(
|
||||
serve: true, importMode: LightClientDataImportMode.Full))
|
||||
rng = HmacDrbgContext.new()
|
||||
taskpool = TaskPool.new()
|
||||
taskpool = Taskpool.new()
|
||||
var
|
||||
verifier = BatchVerifier.init(rng, taskpool)
|
||||
quarantine = newClone(Quarantine.init())
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 66585e2e960b7695e48ea60377fb3aeac96406e8
|
||||
Subproject commit 25f24dddaf1b6d0c791751e209109ba79fea6802
|
Loading…
Reference in New Issue