-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(scripts): add env debug script (#191)
- Loading branch information
Showing
7 changed files
with
195 additions
and
121 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
from importlib.metadata import version | ||
from typing import List | ||
|
||
REQUIRED_MODULES = ["onnx", "diffusers", "safetensors", "torch"] | ||
|
||
REQUIRED_RUNTIME = [ | ||
"onnxruntime", | ||
"onnxruntime_gpu", | ||
"onnxruntime_rocm", | ||
"onnxruntime_training", | ||
] | ||
|
||
|
||
def check_modules() -> List[str]: | ||
results = [] | ||
for name in REQUIRED_MODULES: | ||
try: | ||
__import__(name) | ||
module_version = version(name) | ||
results.append( | ||
f"required module {name} is present at version {module_version}" | ||
) | ||
except ImportError as e: | ||
results.append(f"unable to import required module {name}: {e}") | ||
|
||
return results | ||
|
||
|
||
def check_providers() -> List[str]: | ||
results = [] | ||
try: | ||
import onnxruntime | ||
import torch | ||
|
||
available = onnxruntime.get_available_providers() | ||
for provider in onnxruntime.get_all_providers(): | ||
if provider in available: | ||
results.append(f"onnxruntime provider {provider} is available") | ||
else: | ||
results.append(f"onnxruntime provider {provider} is missing") | ||
except Exception as e: | ||
results.append(f"unable to check runtime providers: {e}") | ||
|
||
return results | ||
|
||
|
||
ALL_CHECKS = [ | ||
check_modules, | ||
check_providers, | ||
] | ||
|
||
|
||
def check_all(): | ||
results = [] | ||
for check in ALL_CHECKS: | ||
results.extend(check()) | ||
|
||
print(results) | ||
|
||
|
||
if __name__ == "__main__": | ||
check_all() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,124 @@ | ||
from collections import Counter | ||
from logging import getLogger | ||
from os import path | ||
from sys import argv | ||
from typing import Callable, List | ||
|
||
import torch | ||
from onnx import load_model | ||
from safetensors import safe_open | ||
|
||
import onnx_web | ||
|
||
logger = getLogger(__name__) | ||
|
||
CheckFunc = Callable[[str], List[str]] | ||
|
||
|
||
def check_file_extension(filename: str) -> List[str]: | ||
""" | ||
Check the file extension | ||
""" | ||
_name, ext = path.splitext(filename) | ||
ext = ext.removeprefix(".") | ||
|
||
if ext != "": | ||
return [f"format:{ext}"] | ||
|
||
return [] | ||
|
||
|
||
def check_file_diffusers(filename: str) -> List[str]: | ||
""" | ||
Check for a diffusers directory with model_index.json | ||
""" | ||
if path.isdir(filename) and path.exists(path.join(filename, "model_index.json")): | ||
return ["model:diffusion"] | ||
|
||
return [] | ||
|
||
|
||
def check_parser_safetensor(filename: str) -> List[str]: | ||
""" | ||
Attempt to load as a safetensor | ||
""" | ||
try: | ||
if path.isfile(filename): | ||
# only try to parse files | ||
safe_open(filename, framework="pt") | ||
return ["format:safetensor"] | ||
except Exception as e: | ||
logger.debug("error parsing as safetensor: %s", e) | ||
|
||
return [] | ||
|
||
|
||
def check_parser_torch(filename: str) -> List[str]: | ||
""" | ||
Attempt to load as a torch tensor | ||
""" | ||
try: | ||
if path.isfile(filename): | ||
# only try to parse files | ||
torch.load(filename) | ||
return ["format:torch"] | ||
except Exception as e: | ||
logger.debug("error parsing as torch tensor: %s", e) | ||
|
||
return [] | ||
|
||
|
||
def check_parser_onnx(filename: str) -> List[str]: | ||
""" | ||
Attempt to load as an ONNX model | ||
""" | ||
try: | ||
if path.isfile(filename): | ||
load_model(filename) | ||
return ["format:onnx"] | ||
except Exception as e: | ||
logger.debug("error parsing as ONNX model: %s", e) | ||
|
||
return [] | ||
|
||
|
||
def check_network_lora(filename: str) -> List[str]: | ||
""" | ||
TODO: Check for LoRA keys | ||
""" | ||
return [] | ||
|
||
|
||
def check_network_inversion(filename: str) -> List[str]: | ||
""" | ||
TODO: Check for Textual Inversion keys | ||
""" | ||
return [] | ||
|
||
|
||
ALL_CHECKS: List[CheckFunc] = [ | ||
check_file_diffusers, | ||
check_file_extension, | ||
check_network_inversion, | ||
check_network_lora, | ||
check_parser_onnx, | ||
check_parser_safetensor, | ||
check_parser_torch, | ||
] | ||
|
||
|
||
def check_file(filename: str) -> Counter: | ||
logger.info("checking file: %s", filename) | ||
|
||
counts = Counter() | ||
for check in ALL_CHECKS: | ||
logger.info("running check: %s", check.__name__) | ||
counts.update(check(filename)) | ||
|
||
common = counts.most_common() | ||
logger.info("file %s is most likely: %s", filename, common) | ||
|
||
|
||
if __name__ == "__main__": | ||
for file in argv[1:]: | ||
check_file(file) |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters