microsoft/onnxruntime-extensions

Public

mirrored fromhttps://github.com/microsoft/onnxruntime-extensionsAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
b3a300d7bf6f3e99fb907e682f7246ed5ed5805e

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

onnxruntime_customops/__init__.py

18lines · modecode

1# Copyright (c) Microsoft Corporation. All rights reserved.
2# Licensed under the MIT License. See License.txt in the project root for
3# license information.
4###############################################################################
5
6"""
7The entry point to onnxruntime custom op library
8"""
9
10__version__ = "0.0.1"
11__author__ = "Microsoft"
12
13
14from ._ocos import get_library_path # noqa
15from ._ocos import Opdef, PyCustomOpDef, hash_64, enable_custom_op # noqa
16from ._ocos import expand_onnx_inputs # noqa
17
18onnx_op = Opdef.declare
19