From aa9a68010b3bc6ae5d6ee5b60db7cbb3ef5530f0 Mon Sep 17 00:00:00 2001 From: Rory Mitchell Date: Thu, 23 Jan 2020 16:59:18 +1300 Subject: [PATCH] uint not supported in cudf (#5225) --- tests/python-gpu/test_from_columnar.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tests/python-gpu/test_from_columnar.py b/tests/python-gpu/test_from_columnar.py index f4786e603..b1754ddf1 100644 --- a/tests/python-gpu/test_from_columnar.py +++ b/tests/python-gpu/test_from_columnar.py @@ -47,10 +47,6 @@ Arrow specification.''' dmatrix_from_cudf(np.float32, np.NAN) dmatrix_from_cudf(np.float64, np.NAN) - dmatrix_from_cudf(np.uint8, 2) - dmatrix_from_cudf(np.uint32, 3) - dmatrix_from_cudf(np.uint64, 4) - dmatrix_from_cudf(np.int8, 2) dmatrix_from_cudf(np.int32, -2) dmatrix_from_cudf(np.int64, -3)