Skip to content

Commit

Permalink
Fix bad merge in local_worker_manager.py
Browse files Browse the repository at this point in the history
  • Loading branch information
mtrofin authored Oct 18, 2023
1 parent a3edb98 commit 1f0bffe
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion compiler_opt/distributed/local/local_worker_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,6 @@ def _run_impl(pipe: connection.Connection, worker_class: SerializedClass, *args,
# jobs, this effectively limits the number of clang instances spawned.
pool = concurrent.futures.ThreadPoolExecutor(max_workers=1)
obj = cloudpickle.loads(worker_class)(*args, **kwargs)
obj = cloudpickle.loads(worker_class)(*args, **kwargs)

# Pipes are not thread safe
pipe_lock = threading.Lock()
Expand Down

0 comments on commit 1f0bffe

Please sign in to comment.