Fix multi-threaded tests on macOS (#1005)

Fixes https://github.com/llvm/torch-mlir/issues/994
pull/1012/head snapshot-20220705.524
powderluv 2022-07-05 00:05:36 -07:00 committed by GitHub
parent a1947c7bd1
commit be3d14cf76
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -321,7 +321,7 @@ def run_workers_in_parallel(task_queue: mp.Queue, worker):
processes = []
for i in range(NUMBER_OF_PROCESSES):
p = mp.Process(target=worker, args=(task_queue, ))
p = mp.get_context("fork").Process(target=worker, args=(task_queue, ))
p.start()
processes.append(p)
for i in range(NUMBER_OF_PROCESSES):