| 3973 | } |
| 3974 | |
| 3975 | struct ggml_tensor * ggml_soft_max_inplace( |
| 3976 | struct ggml_context * ctx, |
| 3977 | struct ggml_tensor * a) { |
| 3978 | return ggml_soft_max_impl(ctx, a, NULL, 1.0f, 0.0f, true); |
| 3979 | } |
| 3980 | |
| 3981 | struct ggml_tensor * ggml_soft_max_ext( |
| 3982 | struct ggml_context * ctx, |
nothing calls this directly
no test coverage detected