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

Function ggml_compute_forward_step

ggml.c:8742–8756  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

8740}
8741
8742static 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

Callers 1

Calls 1

Tested by

no test coverage detected