| 13520 | // ggml_compute_forward_map_custom1 |
| 13521 | |
| 13522 | static void ggml_compute_forward_map_custom1_f32( |
| 13523 | const struct ggml_compute_params * params, |
| 13524 | const struct ggml_tensor * a, |
| 13525 | struct ggml_tensor * dst, |
| 13526 | const ggml_custom1_op_f32_t fun) { |
| 13527 | assert(params->ith == 0); |
| 13528 | |
| 13529 | if (params->type == GGML_TASK_INIT || params->type == GGML_TASK_FINALIZE) { |
| 13530 | return; |
| 13531 | } |
| 13532 | |
| 13533 | fun(dst, a); |
| 13534 | } |
| 13535 | |
| 13536 | // ggml_compute_forward_map_custom2 |
| 13537 |
no outgoing calls
no test coverage detected