| 101 | } |
| 102 | |
| 103 | static inline bool ggml_impl_is_view(const struct ggml_tensor * t) { |
| 104 | return t->view_src != NULL; |
| 105 | } |
| 106 | |
| 107 | static inline float ggml_compute_softplus_f32(float input) { |
| 108 | return (input > 20.0f) ? input : logf(1 + expf(input)); |
no outgoing calls
no test coverage detected