Tree: Format

Signed-off-by: kingbri <8082010+kingbri1@users.noreply.github.com>
This commit is contained in:
kingbri
2025-05-17 00:46:40 -04:00
parent fa534fe551
commit 0858b6d4b2
5 changed files with 11 additions and 13 deletions

View File

@@ -7,16 +7,14 @@ successful_packages = []
errored_packages = []
if find_spec("flash_attn") is not None:
print(
f"Flash attention on version {version('flash_attn')} " "successfully imported"
)
print(f"Flash attention on version {version('flash_attn')} successfully imported")
successful_packages.append("flash_attn")
else:
print("Flash attention 2 is not found in your environment.")
errored_packages.append("flash_attn")
if find_spec("exllamav2") is not None:
print(f"Exllamav2 on version {version('exllamav2')} " "successfully imported")
print(f"Exllamav2 on version {version('exllamav2')} successfully imported")
successful_packages.append("exllamav2")
else:
print("Exllamav2 is not found in your environment.")