From df3a943a87e214420df63dbf00f7eed9c5395983 Mon Sep 17 00:00:00 2001 From: Matthew Roeschke <10647082+mroeschke@users.noreply.github.com> Date: Thu, 14 Mar 2024 14:38:25 -0700 Subject: [PATCH] Change mem usage number? --- python/cuspatial/cuspatial/tests/test_geodataframe.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/cuspatial/cuspatial/tests/test_geodataframe.py b/python/cuspatial/cuspatial/tests/test_geodataframe.py index 40aef747d..718046c17 100644 --- a/python/cuspatial/cuspatial/tests/test_geodataframe.py +++ b/python/cuspatial/cuspatial/tests/test_geodataframe.py @@ -331,7 +331,7 @@ def test_memory_usage(gs, data_dir): host_dataframe = gpd.read_file(data_dir / "naturalearth_lowres.shp") gpu_dataframe = cuspatial.from_geopandas(host_dataframe) # The df size is 8kb of cudf rows and 217kb of the geometry column - assert gpu_dataframe.memory_usage().sum() == 224945 + assert gpu_dataframe.memory_usage().sum() == 216793 def test_from_dict():