Skip to content

Commit

Permalink
Merge pull request #17914 from rapidsai/branch-25.02
Browse files Browse the repository at this point in the history
Forward-merge branch-25.02 into branch-25.04
  • Loading branch information
GPUtester authored Feb 4, 2025
2 parents 0e91baf + 2bada0d commit 99b207f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/cudf/source/pylibcudf/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ pylibcudf:
import pylibcudf as plc
source = plc.io.SourceInfo(["dataset.parquet"])
options = plc.io.parquet.ParquetReaderOptions.builder(source)
options = plc.io.parquet.ParquetReaderOptions.builder(source).build()
table = plc.io.parquet.read_parquet(options)
libcudf:
Expand All @@ -26,7 +26,7 @@ libcudf:
int main()
{
auto source = cudf::io::source_info("dataset.parquet");
auto options = cudf::io::parquet_reader_options::builder(source);
auto options = cudf::io::parquet_reader_options::builder(source).build();
auto table = cudf::io::read_parquet(options);
}
Expand Down

0 comments on commit 99b207f

Please sign in to comment.