MCPcopy Create free account
hub / github.com/Tiiny-AI/PowerInfer / ggml_compute_forward_map_custom1_f32

Function ggml_compute_forward_map_custom1_f32

ggml.c:13522–13534  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

13520// ggml_compute_forward_map_custom1
13521
13522static 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

Callers 1

ggml_compute_forwardFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected