| 4954 | } |
| 4955 | |
| 4956 | struct ggml_tensor * ggml_interpolate( |
| 4957 | struct ggml_context * ctx, |
| 4958 | struct ggml_tensor * a, |
| 4959 | int64_t ne0, |
| 4960 | int64_t ne1, |
| 4961 | int64_t ne2, |
| 4962 | int64_t ne3, |
| 4963 | uint32_t mode) { |
| 4964 | return ggml_interpolate_impl(ctx, a, ne0, ne1, ne2, ne3, mode); |
| 4965 | } |
| 4966 | |
| 4967 | // ggml_pad |
| 4968 |