| 7735 | } |
| 7736 | |
| 7737 | static void ggml_compute_forward_sub( |
| 7738 | const struct ggml_compute_params * params, |
| 7739 | const struct ggml_tensor * src0, |
| 7740 | const struct ggml_tensor * src1, |
| 7741 | struct ggml_tensor * dst) { |
| 7742 | switch (src0->type) { |
| 7743 | case GGML_TYPE_F32: |
| 7744 | { |
| 7745 | ggml_compute_forward_sub_f32(params, src0, src1, dst); |
| 7746 | } break; |
| 7747 | default: |
| 7748 | { |
| 7749 | GGML_ASSERT(false); |
| 7750 | } break; |
| 7751 | } |
| 7752 | } |
| 7753 | |
| 7754 | // ggml_compute_forward_mul |
| 7755 |
no test coverage detected