| 3260 | } |
| 3261 | |
| 3262 | struct ggml_tensor * ggml_add_cast( |
| 3263 | struct ggml_context * ctx, |
| 3264 | struct ggml_tensor * a, |
| 3265 | struct ggml_tensor * b, |
| 3266 | enum ggml_type type) { |
| 3267 | return ggml_add_cast_impl(ctx, a, b, type); |
| 3268 | } |
| 3269 | |
| 3270 | // ggml_add1 |
| 3271 |
no test coverage detected