Dorothydu's picture
Upload 50 random repository samples
9d3c8f5 verified
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
from onnxscript.onnx_opset import opset15 as op
from onnxscript.onnx_types import FLOAT
def multi(A: FLOAT["N"]) -> FLOAT["N"]:
x, y = op.Split(A)
x, y = op.Split(x)
return x + y