| 8427 | } |
| 8428 | |
| 8429 | static void ggml_compute_forward_repeat( |
| 8430 | const struct ggml_compute_params * params, |
| 8431 | const struct ggml_tensor * src0, |
| 8432 | struct ggml_tensor * dst) { |
| 8433 | switch (src0->type) { |
| 8434 | case GGML_TYPE_F16: |
| 8435 | { |
| 8436 | ggml_compute_forward_repeat_f16(params, src0, dst); |
| 8437 | } break; |
| 8438 | case GGML_TYPE_F32: |
| 8439 | { |
| 8440 | ggml_compute_forward_repeat_f32(params, src0, dst); |
| 8441 | } break; |
| 8442 | default: |
| 8443 | { |
| 8444 | GGML_ASSERT(false); |
| 8445 | } break; |
| 8446 | } |
| 8447 | } |
| 8448 | |
| 8449 | // ggml_compute_forward_repeat_back |
| 8450 |
no test coverage detected