You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(mi300 machine seems to be slower than mi250 machine? 30s vs 2 minutes)
We should be able to optimize this cache checking and file downloading so it takes < 10 seconds, instead of 1-3 minutes.
Ideas:
Use a thread pool to parallelize the checks and downloads
Zip the remote files for each test that are always used together (e.g. .zip, .tar, or .tar.gz) so only one local hash calculation, remote hash query, and download request is needed instead of 2-50.
Switch more files from Azure to Hugging Face
The text was updated successfully, but these errors were encountered:
The
iree_tests/download_remote_files.py
script is used to download files listed in test case JSON files like this one:SHARK-TestSuite/iree_tests/pytorch/models/resnet50/test_cases.json
Lines 1 to 19 in 6fd8fd0
The script is used from CI like here:
SHARK-TestSuite/.github/workflows/test_iree.yml
Lines 146 to 152 in 6fd8fd0
Sample runs:
(mi300 machine seems to be slower than mi250 machine? 30s vs 2 minutes)
We should be able to optimize this cache checking and file downloading so it takes < 10 seconds, instead of 1-3 minutes.
Ideas:
.zip
,.tar
, or.tar.gz
) so only one local hash calculation, remote hash query, and download request is needed instead of 2-50.The text was updated successfully, but these errors were encountered: