| 145 | } |
| 146 | |
| 147 | core::TensorValue scale_tensor(core::ModuleBuildContext & ctx, const core::TensorValue & input, float scale) { |
| 148 | return core::wrap_tensor(ggml_scale(ctx.ggml, ensure_contiguous(ctx, input).tensor, scale), input.shape, GGML_TYPE_F32); |
| 149 | } |
| 150 | |
| 151 | core::TensorValue broadcast_last_dim( |
| 152 | core::ModuleBuildContext & ctx, |
no test coverage detected