-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f51c18b
commit fe63c74
Showing
1 changed file
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
import time | ||
|
||
class Timing(object): | ||
def __init__(self, prefix="", on_exit=None, enabled=True): self.prefix, self.on_exit, self.enabled = prefix, on_exit, enabled | ||
def __enter__(self): self.st = time.perf_counter_ns() | ||
def __exit__(self, exc_type, exc_val, exc_tb): | ||
self.et = time.perf_counter_ns() - self.st | ||
if self.enabled: print(f"{self.prefix}{self.et*1e-6:.2f} ms"+(self.on_exit(self.et) if self.on_exit else "")) | ||
|
||
def enable_early_exec(): | ||
import subprocess, multiprocessing | ||
qin: multiprocessing.Queue = multiprocessing.Queue() | ||
qout: multiprocessing.Queue = multiprocessing.Queue() | ||
def _early_exec_process(qin, qout): | ||
while 1: | ||
path, inp = qin.get() | ||
qout.put(subprocess.check_output(path, input=inp)) | ||
p = multiprocessing.Process(target=_early_exec_process, args=(qin, qout)) | ||
p.daemon = True | ||
p.start() | ||
def early_exec(x): | ||
qin.put(x) | ||
return qout.get() | ||
return early_exec | ||
|
||
def proc(itermaker, q): | ||
for x in itermaker(): q.put(x) | ||
q.close() | ||
|
||
def cross_process(itermaker, maxsize=8): | ||
# TODO: use cloudpickle for itermaker | ||
import multiprocessing | ||
q: multiprocessing.Queue = multiprocessing.Queue(maxsize) | ||
p = multiprocessing.Process(target=proc, args=(itermaker, q)) | ||
p.daemon = True | ||
p.start() | ||
|
||
# TODO: write tests and handle exit case | ||
while 1: yield q.get() |