MCPcopy Create free account
hub / github.com/appdevforall/CodeOnTheGo / ggml_soft_max_ext

Function ggml_soft_max_ext

subprojects/llama.cpp/ggml/src/ggml.c:3981–3988  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3979}
3980
3981struct ggml_tensor * ggml_soft_max_ext(
3982 struct ggml_context * ctx,
3983 struct ggml_tensor * a,
3984 struct ggml_tensor * mask,
3985 float scale,
3986 float max_bias) {
3987 return ggml_soft_max_impl(ctx, a, mask, scale, max_bias, false);
3988}
3989
3990struct ggml_tensor * ggml_soft_max_ext_inplace(
3991 struct ggml_context * ctx,

Callers 6

build_attnMethod · 0.85
build_attn_mhaMethod · 0.85
build_graphMethod · 0.85
llm_build_kqvMethod · 0.85
ggml_vk_check_results_0Function · 0.85

Calls 1

ggml_soft_max_implFunction · 0.85

Tested by 2

build_graphMethod · 0.68
llm_build_kqvMethod · 0.68