rapidsai / gpu-bdb

RAPIDS GPU-BDB
Apache License 2.0
108 stars 44 forks source link

Switch`optimization.fuse.active` to True for `gpu-bdb` #216

Closed VibhuJawa closed 3 years ago

VibhuJawa commented 3 years ago

We should switch optimization.fuse.active to True for gpu-bdb so that we can get the scheduler improvements that Rick pushed to the mainline dask with PR https://github.com/dask/dask/pull/7620 .

os.environ["DASK_OPTIMIZATION_FUSE_ACTIVE"]='True'
cluster = LocalCUDACluster(xxxx  )
client = Client(cluster)

print(dask.config.get('optimization.fuse.active'))
True

CC: @beckernick

VibhuJawa commented 3 years ago

I got the config wrong. The default optimization.fuse.activeof False for gpu-bdb is how the scheduler/HLG improvements will be used. Closing the issue.