diff --git a/crates/polars-python/src/cloud.rs b/crates/polars-python/src/cloud.rs index 3eead24c73ae..2886b694047c 100644 --- a/crates/polars-python/src/cloud.rs +++ b/crates/polars-python/src/cloud.rs @@ -25,12 +25,16 @@ pub fn prepare_cloud_plan(lf: PyLazyFrame, py: Python) -> PyResult { /// must exactly match the one expected by the `cudf_polars` package. #[pyfunction] pub fn _update_ir_plan_for_gpu(ir_plan_ser: Vec, py: Python) -> PyResult { + eprintln!("Update function called"); + // Deserialize into IRPlan. let reader = Cursor::new(ir_plan_ser); let mut ir_plan = ciborium::from_reader::(reader) .map_err(to_compute_err) .map_err(PyPolarsErr::from)?; + eprintln!("Deserialized"); + // Edit for use with GPU engine. gpu_post_opt( py, @@ -40,12 +44,16 @@ pub fn _update_ir_plan_for_gpu(ir_plan_ser: Vec, py: Python) -> PyResult