From 2779936a6b2c035a2570f22ed7197124bedb5975 Mon Sep 17 00:00:00 2001 From: vuule Date: Tue, 20 Jul 2021 15:14:54 -0700 Subject: [PATCH 1/2] add info on the GDS-enabled formats --- docs/cudf/source/io-gds-integration.rst | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/cudf/source/io-gds-integration.rst b/docs/cudf/source/io-gds-integration.rst index 9ccf773b2e4..8caf994c805 100644 --- a/docs/cudf/source/io-gds-integration.rst +++ b/docs/cudf/source/io-gds-integration.rst @@ -19,4 +19,12 @@ When ``LIBCUDF_CUFILE_POLICY`` is set to "GDS" and a GDS API call fails for any When ``LIBCUDF_CUFILE_POLICY`` is set to "ALWAYS" and a GDS API call fails for any reason (unlikely, given that the compatibility mode is on), cuDF throws an exception to propagate the error to te user. +Operations that support the use of GPUDirect Storage: + +- `read_avro` +- `read_parquet` +- `read_orc` +- `to_parquet` +- `to_orc` + NOTE: current GDS integration is not fully optimized and enabling GDS will not lead to performance improvements in all cases. \ No newline at end of file From 55c3625e001fcfb1b962571bdab886b45aa817d0 Mon Sep 17 00:00:00 2001 From: vuule Date: Tue, 20 Jul 2021 15:19:48 -0700 Subject: [PATCH 2/2] forgot CSV writer --- docs/cudf/source/io-gds-integration.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/cudf/source/io-gds-integration.rst b/docs/cudf/source/io-gds-integration.rst index 8caf994c805..d4d41d02dee 100644 --- a/docs/cudf/source/io-gds-integration.rst +++ b/docs/cudf/source/io-gds-integration.rst @@ -24,6 +24,7 @@ Operations that support the use of GPUDirect Storage: - `read_avro` - `read_parquet` - `read_orc` +- `to_csv` - `to_parquet` - `to_orc`