| 8740 | } |
| 8741 | |
| 8742 | static void ggml_compute_forward_step( |
| 8743 | const struct ggml_compute_params * params, |
| 8744 | const struct ggml_tensor * src0, |
| 8745 | struct ggml_tensor * dst) { |
| 8746 | switch (src0->type) { |
| 8747 | case GGML_TYPE_F32: |
| 8748 | { |
| 8749 | ggml_compute_forward_step_f32(params, src0, dst); |
| 8750 | } break; |
| 8751 | default: |
| 8752 | { |
| 8753 | GGML_ASSERT(false); |
| 8754 | } break; |
| 8755 | } |
| 8756 | } |
| 8757 | |
| 8758 | // ggml_compute_forward_tanh |
| 8759 |
no test coverage detected