From e3cc92b9618bf8d9870724eb629b6d96efd7ac52 Mon Sep 17 00:00:00 2001 From: Jordan Jacobelli Date: Fri, 24 Feb 2023 10:49:13 +0100 Subject: [PATCH] Update datasets download URL Signed-off-by: Jordan Jacobelli --- python/cudf/cudf/benchmarks/get_datasets.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/python/cudf/cudf/benchmarks/get_datasets.py b/python/cudf/cudf/benchmarks/get_datasets.py index f3b66eda512..7090539bcb0 100644 --- a/python/cudf/cudf/benchmarks/get_datasets.py +++ b/python/cudf/cudf/benchmarks/get_datasets.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, NVIDIA CORPORATION. +# Copyright (c) 2020-2023, NVIDIA CORPORATION. import argparse import os @@ -9,10 +9,7 @@ Dataset = namedtuple("Dataset", ["url", "dir"]) datasets = { "cuio_dataset": Dataset( - ( - "https://rapidsai-data.s3.us-east-2.amazonaws.com/cudf/" - "benchmark/avro_json_datasets.zip" - ), + "https://data.rapids.ai/cudf/benchmark/avro_json_datasets.zip", "cudf/benchmarks/cuio_data/", ), }