Skip to content

Commit 0b25002

Browse files
committed
up
1 parent 1457903 commit 0b25002

1 file changed

Lines changed: 0 additions & 8 deletions

File tree

backends/mlx/runtime/MLXInterpreter.h

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -764,11 +764,6 @@ exec_contiguous(const ContiguousNode& n, ExecutionState& st, StreamOrDevice s) {
764764
st.set_tensor(n.out, contiguous(st.const_tensor_ref(n.x), false, s));
765765
}
766766

767-
inline void
768-
exec_id_copy(const IdCopyNode& n, ExecutionState& st, StreamOrDevice) {
769-
st.set_tensor(n.out, st.const_tensor_ref(n.x));
770-
}
771-
772767
inline void
773768
exec_gather(const GatherNode& n, ExecutionState& st, StreamOrDevice s) {
774769
const auto& x = st.const_tensor_ref(n.x);
@@ -1769,9 +1764,6 @@ class Interpreter {
17691764
case OpCode::CONTIGUOUS:
17701765
ops::exec_contiguous(std::get<ContiguousNode>(instr.node), st, s);
17711766
break;
1772-
case OpCode::ID_COPY:
1773-
ops::exec_id_copy(std::get<IdCopyNode>(instr.node), st, s);
1774-
break;
17751767
case OpCode::GATHER:
17761768
ops::exec_gather(std::get<GatherNode>(instr.node), st, s);
17771769
break;

0 commit comments

Comments
 (0)