| 5982 | } |
| 5983 | |
| 5984 | struct ggml_tensor * ggml_map_binary_inplace_f32( |
| 5985 | struct ggml_context * ctx, |
| 5986 | struct ggml_tensor * a, |
| 5987 | struct ggml_tensor * b, |
| 5988 | const ggml_binary_op_f32_t fun) { |
| 5989 | return ggml_map_binary_impl_f32(ctx, a, b, fun, true); |
| 5990 | } |
| 5991 | |
| 5992 | // ggml_map_custom1_f32 |
| 5993 |
nothing calls this directly
no test coverage detected