| 4943 | } |
| 4944 | |
| 4945 | struct ggml_tensor * ggml_upscale_ext( |
| 4946 | struct ggml_context * ctx, |
| 4947 | struct ggml_tensor * a, |
| 4948 | int ne0, |
| 4949 | int ne1, |
| 4950 | int ne2, |
| 4951 | int ne3, |
| 4952 | enum ggml_scale_mode mode) { |
| 4953 | return ggml_interpolate_impl(ctx, a, ne0, ne1, ne2, ne3, mode); |
| 4954 | } |
| 4955 | |
| 4956 | struct ggml_tensor * ggml_interpolate( |
| 4957 | struct ggml_context * ctx, |
nothing calls this directly
no test coverage detected