From 22678a51dc6c1e1900e1de34d738aa850545139b Mon Sep 17 00:00:00 2001 From: Peter Andreas Entschev Date: Thu, 14 Nov 2024 12:27:23 -0800 Subject: [PATCH] Remove `executor` kwarg from `assert_gpu_result_equal` --- python/cudf_polars/cudf_polars/testing/asserts.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/python/cudf_polars/cudf_polars/testing/asserts.py b/python/cudf_polars/cudf_polars/testing/asserts.py index 2061f87b39e..0155cb2a9f7 100644 --- a/python/cudf_polars/cudf_polars/testing/asserts.py +++ b/python/cudf_polars/cudf_polars/testing/asserts.py @@ -38,7 +38,6 @@ def assert_gpu_result_equal( rtol: float = 1e-05, atol: float = 1e-08, categorical_as_str: bool = False, - executor: str | None = None, ) -> None: """ Assert that collection of a lazyframe on GPU produces correct results. @@ -74,8 +73,6 @@ def assert_gpu_result_equal( Absolute tolerance for float comparisons categorical_as_str Decat categoricals to strings before comparing - executor - The executor configuration to pass to `GPUEngine` Raises ------