| 15 | namespace mlx::core { |
| 16 | |
| 17 | void Add::eval_cpu(const std::vector<array>& inputs, array& out) { |
| 18 | assert(inputs.size() == 2); |
| 19 | auto& a = inputs[0]; |
| 20 | auto& b = inputs[1]; |
| 21 | binary_op_cpu(a, b, out, detail::Add(), stream()); |
| 22 | } |
| 23 | |
| 24 | void DivMod::eval_cpu( |
| 25 | const std::vector<array>& inputs, |
nothing calls this directly
no test coverage detected