Skip to content

Commit de3bae4

Browse files
Update Gather op without input_type in index
Internal IR remove "input_type" from Gather op. This commit removes "input_type" setting and set Gather inputs Co-authored-by: Jingya Zhang <jingya.zhang@samsung.com> Signed-off-by: jiseong.oh <jiseong.oh@samsung.com>
1 parent 7281f62 commit de3bae4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

backends/samsung/builders/op_index.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def define_node(
4343

4444
output_id = self.define_tensor(node, enn_graph, vals_to_ids)
4545

46-
params = {"axis": axis, "input_type": "params"}
46+
params = {"axis": axis}
4747
enn_graph.define_op(
4848
node.name, "GATHER", [input_id, indices_id], [output_id], params
4949
)

0 commit comments

Comments
 (0)