| 2008 | } |
| 2009 | |
| 2010 | struct ggml_tensor * ggml_add_cast( |
| 2011 | struct ggml_context * ctx, |
| 2012 | struct ggml_tensor * a, |
| 2013 | struct ggml_tensor * b, |
| 2014 | enum ggml_type type) { |
| 2015 | return ggml_add_cast_impl(ctx, a, b, type); |
| 2016 | } |
| 2017 | |
| 2018 | struct ggml_tensor * ggml_add_id( |
| 2019 | struct ggml_context * ctx, |
nothing calls this directly
no test coverage detected