mirror of
https://github.com/iperov/DeepFaceLive.git
synced 2024-12-25 07:21:13 -08:00
9 lines
308 B
Python
9 lines
308 B
Python
import multiprocessing
|
|
if multiprocessing.get_start_method() != 'spawn':
|
|
multiprocessing.set_start_method("spawn", force=True)
|
|
|
|
from .PMPI import PMPI
|
|
from .MPAtomicInt32 import MPAtomicInt32
|
|
from .MPSPSCMRRingData import MPSPSCMRRingData
|
|
from .MPWeakHeap import MPWeakHeap
|
|
from .MPWorker import MPWorker |