| 5 | namespace engine::modules { |
| 6 | |
| 7 | class MatMulModule { |
| 8 | public: |
| 9 | const core::ModuleSchema & schema() const noexcept; |
| 10 | core::TensorValue build( |
| 11 | core::ModuleBuildContext & ctx, |
| 12 | const core::TensorValue & lhs, |
| 13 | const core::TensorValue & rhs) const; |
| 14 | |
| 15 | static const core::ModuleSchema & static_schema() noexcept; |
| 16 | }; |
| 17 | |
| 18 | class AddModule { |
| 19 | public: |
no outgoing calls
no test coverage detected