mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-14 20:48:00 +00:00
15 lines
578 B
Python
15 lines
578 B
Python
# Copyright (c) Microsoft Corporation. All rights reserved.
|
|
# Licensed under the MIT License.
|
|
|
|
from .get_azcopy import get_azcopy
|
|
from .logger import get_logger
|
|
from .platform_helpers import (is_windows, is_macOS, is_linux)
|
|
# Test what is needed here to use in a script
|
|
# from .pytorch_export_helpers import infer_input_info
|
|
from .run import run
|
|
|
|
try:
|
|
import flatbuffers # noqa
|
|
from .reduced_build_config_parser import parse_config
|
|
except ImportError:
|
|
get_logger('tools_python_utils').info('flatbuffers module is not installed. parse_config will not be available')
|