forked from microsoft/onnxscript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path03_export_lib.py
36 lines (26 loc) · 824 Bytes
/
03_export_lib.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
"""
Generating a LibProto
=====================
The examples below show how we can define a library consisting of multiple functions,
and export it.
**This is preliminary. Proto extensions are required to fully support LibProto.**
"""
from onnxscript import export_onnx_lib, script
from onnxscript import opset15 as op
from onnxscript.values import Opset
# %%
# The domain/version of the library functions defined below
opset = Opset("com.mydomain", 1)
# %%
# The definitions of the functions:
@script(opset)
def l2norm(X):
return op.ReduceSum(X * X, keepdims=1)
@script(opset)
def square_loss(X, Y):
return l2norm(op.Sub(X, Y))
# %%
# Export the functions as an ONNX library.
export_onnx_lib([l2norm, square_loss], "mylib.onnxlib")