Skip to content

Commit

Permalink
disable IP adapter tests for the moment.
Browse files Browse the repository at this point in the history
  • Loading branch information
sayakpaul committed Jun 27, 2024
1 parent 961c8a5 commit b75b8e5
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions benchmarks/run_all.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ def main():
for file in python_files:
print(f"****** Running file: {file} ******")

if "ip_adapters" in file:
continue

# Run with canonical settings.
if file != "benchmark_text_to_image.py":
command = f"python {file}"
Expand All @@ -49,6 +52,9 @@ def main():

# Run variants.
for file in python_files:
if "ip_adapters" in file:
continue

if file == "benchmark_text_to_image.py":
for ckpt in ALL_T2I_CKPTS:
command = f"python {file} --ckpt {ckpt}"
Expand Down

0 comments on commit b75b8e5

Please sign in to comment.