Skip to content

Commit

Permalink
Update python/cudf/cudf/pandas/module_accelerator.py
Browse files Browse the repository at this point in the history
Co-authored-by: Bradley Dice <bdice@bradleydice.com>
  • Loading branch information
vyasr and bdice authored Feb 7, 2025
1 parent fe61684 commit ddc47ee
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions python/cudf/cudf/pandas/module_accelerator.py
Original file line number Diff line number Diff line change
Expand Up @@ -413,9 +413,8 @@ def __new__(

# These initializations do not need to be protected since a given instance is
# always being created on a given thread.
self._use_fast_lib = {}
self._use_fast_lib = {threading.get_ident(): True}
self._use_fast_lib_bkp = defaultdict(list)
self._use_fast_lib[threading.get_ident()] = True
return self

def _populate_module(self, mod: ModuleType):
Expand Down

0 comments on commit ddc47ee

Please sign in to comment.