Skip to content

Instantly share code, notes, and snippets.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@stephanie-wang
stephanie-wang / 1f1b.py
Last active March 7, 2025 00:43
1F1B in ray aDAGs
import ray
import ray.dag
@ray.remote
class Worker:
def __init__(self, rank):
self.rank = rank
self.trace = []