| 260 | input.type); |
| 261 | } |
| 262 | |
| 263 | engine::core::TensorValue negate_tensor( |
| 264 | engine::core::ModuleBuildContext & ctx, |
| 265 | const engine::core::TensorValue & input) { |
| 266 | return engine::core::wrap_tensor( |
| 267 | ggml_scale(ctx.ggml, contiguous(ctx, input).tensor, -1.0f), |
| 268 | input.shape, |
| 269 | GGML_TYPE_F32); |
| 270 | } |
| 271 | |
| 272 | engine::core::TensorValue tokenizer_conv1d_bct( |
no test coverage detected