mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-20 21:14:14 +08:00
Pull Request resolved: https://github.com/pytorch/pytorch/pull/152237 Approved by: https://github.com/huydhn, https://github.com/malfet
13 lines
316 B
Bash
13 lines
316 B
Bash
#!/bin/bash
|
|
|
|
base_url='https://github.com/AlnisM/autoheuristic-datasets/raw/main/' # @lint-ignore
|
|
a100_data='a100_mm.zip'
|
|
h100_data='h100_mm.zip'
|
|
datasets=("${a100_data}" "${h100_data}")
|
|
for dataset in "${datasets[@]}"; do
|
|
url="${base_url}${dataset}"
|
|
wget ${url}
|
|
unzip ${dataset}
|
|
rm ${dataset}
|
|
done
|