We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe1307c commit 2e75f89Copy full SHA for 2e75f89
ai_edge_torch/odml_torch/experimental/torch_tfl/_ops.py
@@ -130,8 +130,8 @@ def tfl_concatenation(
130
return torch.cat(tensors, dim=dim)
131
132
133
-@custom_op_with_fake("tfl::fill", schema="(int[] x, Any y) -> Tensor")
134
-def tfl_fill(dims: Sequence[int], fill_value: Any) -> torch.Tensor:
+@custom_op_with_fake("tfl::fill", schema="(SymInt[] x, Any y) -> Tensor")
+def tfl_fill(dims: Sequence[torch.SymInt], fill_value: Any) -> torch.Tensor:
135
return torch.full(dims, fill_value)
136
137
0 commit comments