| 5011 | } |
| 5012 | |
| 5013 | struct ggml_tensor * ggml_soft_max_back( |
| 5014 | struct ggml_context * ctx, |
| 5015 | struct ggml_tensor * a, |
| 5016 | struct ggml_tensor * b) { |
| 5017 | return ggml_soft_max_back_impl(ctx, a, b, false); |
| 5018 | } |
| 5019 | |
| 5020 | struct ggml_tensor * ggml_soft_max_back_inplace( |
| 5021 | struct ggml_context * ctx, |
no test coverage detected