| 404 | } |
| 405 | |
| 406 | core::TensorValue graph_mul(core::ModuleBuildContext & ctx, const core::TensorValue & lhs, const core::TensorValue & rhs) { |
| 407 | return modules::MulModule().build(ctx, lhs, rhs); |
| 408 | } |
| 409 | |
| 410 | core::TensorValue graph_scale(core::ModuleBuildContext & ctx, const core::TensorValue & input, float scale) { |
| 411 | const auto contiguous = core::ensure_backend_addressable_layout(ctx, input); |
no test coverage detected