Skip to content

Commit

Permalink
[CI] Avoid content-length request in test data download (apache#4375)
Browse files Browse the repository at this point in the history
  • Loading branch information
tqchen authored and Xingyu Zhou committed Nov 26, 2019
1 parent b5a60cd commit 8b8c877
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/tvm/contrib/download.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,5 +155,5 @@ def download_testdata(url, relpath, module=None):
else:
raise ValueError("Unsupported module: " + module)
abspath = os.path.join(TEST_DATA_ROOT_PATH, module_path, relpath)
download(url, abspath, overwrite=False, size_compare=True)
download(url, abspath, overwrite=False, size_compare=False)
return abspath

0 comments on commit 8b8c877

Please sign in to comment.