pydvl.valuation.parallel
¶
This module defines some utilities used in the parallel processing of valuation methods.
In particular, it defines a flag that can be used to signal across parallel processes to stop computation. This is useful when utility computations are expensive or batched together.
The flag is created by the fit
method of valuations within a
make_parallel_flag context manager, and
passed to implementations of
EvaluationStrategy.process.
The latter calls the flag to detect if the computation should stop.
Flag
¶
Bases: ABC
Abstract class for flags
To check a flag, call it as a function or check it in a boolean context. This will
return True
if the flag is set, and False
otherwise.
ThreadingFlag
¶
make_parallel_flag
¶
A context manager that creates a flag for signalling across parallel processes. The type of flag created is based on the active parallel backend.