From 20df12ebca71d776745e36c2efd2931243b32504 Mon Sep 17 00:00:00 2001 From: rjzamora Date: Tue, 17 Dec 2024 13:45:06 -0800 Subject: [PATCH] remove write statement --- dask_cuda/explicit_comms/dataframe/shuffle.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/dask_cuda/explicit_comms/dataframe/shuffle.py b/dask_cuda/explicit_comms/dataframe/shuffle.py index a7c15f4bc..227b67d19 100644 --- a/dask_cuda/explicit_comms/dataframe/shuffle.py +++ b/dask_cuda/explicit_comms/dataframe/shuffle.py @@ -593,8 +593,6 @@ def patch_shuffle_expression() -> None: _base_layer = TaskShuffle._layer def _layer(self): - with open("debug.txt", "a") as f: - f.write(f"USING: {_use_explicit_comms()}\n") if _use_explicit_comms(): # Execute an explicit-comms shuffle if not hasattr(self, "_ec_shuffled"):