| 393 | } |
| 394 | |
| 395 | core::TensorValue graph_add(core::ModuleBuildContext & ctx, const core::TensorValue & lhs, const core::TensorValue & rhs) { |
| 396 | return modules::AddModule().build(ctx, lhs, rhs); |
| 397 | } |
| 398 | |
| 399 | core::TensorValue graph_sub(core::ModuleBuildContext & ctx, const core::TensorValue & lhs, const core::TensorValue & rhs) { |
| 400 | core::validate_shape(rhs, lhs.shape, "ZipEnhancer sub rhs"); |
no test coverage detected