| 51 | }; |
| 52 | |
| 53 | core::TensorValue ensure_contiguous(core::ModuleBuildContext & ctx, const core::TensorValue & input) { |
| 54 | return core::ensure_backend_addressable_layout(ctx, input); |
| 55 | } |
| 56 | |
| 57 | core::TensorValue ensure_f32(core::ModuleBuildContext & ctx, const core::TensorValue & input) { |
| 58 | if (input.type == GGML_TYPE_F32) { |
no test coverage detected