diff --git a/cpp/src/copying/copy.cu b/cpp/src/copying/copy.cu index a4d656fa258..fbc60f697bc 100644 --- a/cpp/src/copying/copy.cu +++ b/cpp/src/copying/copy.cu @@ -21,7 +21,6 @@ #include #include #include -#include #include #include diff --git a/cpp/tests/strings/fixed_point_tests.cpp b/cpp/tests/strings/fixed_point_tests.cpp index 30f6bc1fe1f..d8b570cee8b 100644 --- a/cpp/tests/strings/fixed_point_tests.cpp +++ b/cpp/tests/strings/fixed_point_tests.cpp @@ -217,23 +217,3 @@ TEST_F(StringsConvertTest, IsFixedPoint) cudf::test::fixed_width_column_wrapper({true, true, true, false, false, false, false}); CUDF_TEST_EXPECT_COLUMNS_EQUIVALENT(*results, expected64_scaled); } - -#include - -TEST_F(StringsConvertTest, FloatFixedPoint) -{ - using DecimalType = numeric::decimal64; - // using RepType = cudf::device_storage_type_t; - // using fp_wrapper = cudf::test::fixed_point_column_wrapper; - - cudf::test::fixed_width_column_wrapper floats( - {1.234E3, -876.0, 543.2, -0.12, .25, -2E-3, -.0027, 0.0}); - auto strings_col = cudf::strings::from_floats(floats); - - auto results = cudf::strings::to_fixed_point( - cudf::strings_column_view(strings_col->view()), - cudf::data_type{cudf::type_to_id(), numeric::scale_type{-2}}); - - cudf::test::print(strings_col->view()); - cudf::test::print(results->view()); -}