Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .ci/torchbench/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,6 @@
set -eux

python3 -c "import torch; print(torch.__version__); print(torch.version.git_version)"
python3 install.py
# TODO (huydhn): Look for a more permanent solution once https://github.com/pytorch/pytorch/issues/167895
# is resolved
python3 install.py --skip stable_diffusion_text_encoder stable_diffusion_unet
3 changes: 3 additions & 0 deletions test.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,9 @@ def _load_tests():
# api, enable after PyTorch 1.13 release
if "quantized" in path:
continue
# https://github.com/pytorch/pytorch/issues/167895
if "stable_diffusion" in path:
continue
for device in devices:
_load_test(path, device)

Expand Down