| 13500 | } |
| 13501 | |
| 13502 | static void ggml_compute_forward_map_binary( |
| 13503 | const struct ggml_compute_params * params, |
| 13504 | const struct ggml_tensor * src0, |
| 13505 | const struct ggml_tensor * src1, |
| 13506 | struct ggml_tensor * dst, |
| 13507 | const ggml_binary_op_f32_t fun) { |
| 13508 | switch (src0->type) { |
| 13509 | case GGML_TYPE_F32: |
| 13510 | { |
| 13511 | ggml_compute_forward_map_binary_f32(params, src0, src1, dst, fun); |
| 13512 | } break; |
| 13513 | default: |
| 13514 | { |
| 13515 | GGML_ASSERT(false); |
| 13516 | } break; |
| 13517 | } |
| 13518 | } |
| 13519 | |
| 13520 | // ggml_compute_forward_map_custom1 |
| 13521 |
no test coverage detected