We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 79c2f39 + c6e8ec6 commit 5dad7c6Copy full SHA for 5dad7c6
onnxscript/_internal/builder.py
@@ -800,12 +800,8 @@ def subgraph(
800
def call_op(
801
self,
802
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,
+ inputs: Sequence[ir.Value | ir.TensorProtocol],
+ kwargs: dict[str, Any],
809
):
810
"""Create an ONNX node and add it to the graph, returning its output value(s)."""
811
count = self.graph.num_nodes()
0 commit comments