Skip to content Skip to sidebar Skip to footer
Showing posts with the label Dask

Python Futures And Tuple Unpacking

What is an elagant/idiomatic way to achieve something like tuple unpacking with futures? I have cod… Read more Python Futures And Tuple Unpacking

Dask Persist Behavior Inconsistent

I found weird behavior with dask persist, if I comment out this line # client = Client(memory_… Read more Dask Persist Behavior Inconsistent

How Do I Convert A List Of Pandas Futures To A Dask Dataframe?

I have a list of Dask futures that point to Pandas dataframes: from dask.dataframe import Client cl… Read more How Do I Convert A List Of Pandas Futures To A Dask Dataframe?

Including Keyword Arguments (kwargs) In Custom Dask Graphs

Am building a custom graph for one operation with Dask. Am familiar with how to pass arguments to a… Read more Including Keyword Arguments (kwargs) In Custom Dask Graphs

How To Use Dask To Run Python Code On The Gpu?

I have some code that uses Numba cuda.jit in order for me to run on the gpu, and I would like to la… Read more How To Use Dask To Run Python Code On The Gpu?

Can I Use Functions Imported From .py Files In Dask/distributed?

I have a question about serialization and imports. should functions have their own imports? like … Read more Can I Use Functions Imported From .py Files In Dask/distributed?