Last active
November 11, 2020 00:35
-
-
Save dewaldabrie/d4fca6d0a80003982740a0e1ed1d44e2 to your computer and use it in GitHub Desktop.
Asynchronous Generator Pipeline
This file contains hidden or 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
import asyncio | |
import time | |
tasks = [] | |
def func(targets, task_id, param): | |
print(f"{task_id}: Initialised with param: {param}") | |
async def func_inner(targets, inpt): | |
await asyncio.sleep(1) # simulated IO delay | |
print(f"{task_id}: Received input: {inpt}") | |
outp = inpt | |
for target in targets or []: | |
print(f"{task_id}: T1 sending {outp}") | |
target.send(outp) | |
while True: | |
inpt = (yield) | |
print(f'{task_id}: Creating task with {task_id}_inner, input {inpt}.') | |
tasks.append(asyncio.create_task(func_inner(targets, inpt))) | |
async def main(): | |
gen2 = func([], 'T2', "hello T2") | |
gen2.send(None) | |
gen1 = func([gen2], 'T1', "hello T1") | |
gen1.send(None) | |
start_time = time.time() | |
gen1.send(1) | |
gen1.send(2) | |
gen1.send(3) | |
await asyncio.gather(*tasks) | |
await asyncio.gather(*tasks) # round 2 | |
print(f"Duration: {time.time() - start_time}") | |
asyncio.run(main()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment