Gauthier Castro
11/01/2023, 2:54 PM@task
def process_data(data: List[float]) -> list[Float]:
...
@workflow
def wf(data1: List[float], data2: List[float]) -> None:
processed_data1 = process_data(data=data1).rename("process_data1")
processed_data2 = process_data(data=data2).rename("process_data2")
...
Ketan (kumare3)
Gauthier Castro
11/01/2023, 3:07 PMKetan (kumare3)
Gauthier Castro
11/01/2023, 3:10 PM.with_overrides(name="my_name")
.with_overrides(task_name="my_name")
?Ketan (kumare3)
Gauthier Castro
11/01/2023, 3:37 PM.with_overrides(name="my_name")
snake caseNikki Everett
11/01/2023, 3:46 PMwith_overrides
in that section, even though the focus is technically on resource allocation