| 8506 | } |
| 8507 | |
| 8508 | static void ggml_compute_forward_repeat_back( |
| 8509 | const struct ggml_compute_params * params, |
| 8510 | const struct ggml_tensor * src0, |
| 8511 | struct ggml_tensor * dst) { |
| 8512 | switch (src0->type) { |
| 8513 | case GGML_TYPE_F32: |
| 8514 | { |
| 8515 | ggml_compute_forward_repeat_back_f32(params, src0, dst); |
| 8516 | } break; |
| 8517 | default: |
| 8518 | { |
| 8519 | GGML_ASSERT(false); |
| 8520 | } break; |
| 8521 | } |
| 8522 | } |
| 8523 | |
| 8524 | // ggml_compute_forward_concat |
| 8525 |
no test coverage detected