Skip to content

Commit 5dad7c6

Browse files
committed
Merge branch 'main' into justinchu/function-inline
Signed-off-by: Justin Chu <justinchuby@users.noreply.github.com>
2 parents 79c2f39 + c6e8ec6 commit 5dad7c6

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

onnxscript/_internal/builder.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -800,12 +800,8 @@ def subgraph(
800800
def call_op(
801801
self,
802802
op_type: str,
803-
inputs: Sequence[ir.Value | ir.TensorProtocol | None],
804-
kwargs: dict[str, ir.Value | ir.TensorProtocol],
805-
/,
806-
domain: str = "",
807-
version: int | None = None,
808-
outputs: int | Sequence[str | ir.Value] = 1,
803+
inputs: Sequence[ir.Value | ir.TensorProtocol],
804+
kwargs: dict[str, Any],
809805
):
810806
"""Create an ONNX node and add it to the graph, returning its output value(s)."""
811807
count = self.graph.num_nodes()

0 commit comments

Comments
 (0)