| 5974 | } |
| 5975 | |
| 5976 | struct ggml_tensor * ggml_map_binary_f32( |
| 5977 | struct ggml_context * ctx, |
| 5978 | struct ggml_tensor * a, |
| 5979 | struct ggml_tensor * b, |
| 5980 | const ggml_binary_op_f32_t fun) { |
| 5981 | return ggml_map_binary_impl_f32(ctx, a, b, fun, false); |
| 5982 | } |
| 5983 | |
| 5984 | struct ggml_tensor * ggml_map_binary_inplace_f32( |
| 5985 | struct ggml_context * ctx, |
nothing calls this directly
no test coverage detected