| 66 | const core::ModuleSchema & schema() const noexcept; |
| 67 | core::TensorValue build( |
| 68 | core::ModuleBuildContext & ctx, |
| 69 | const core::TensorValue & input, |
| 70 | const core::TensorValue & residual) const; |
| 71 | |
| 72 | static const core::ModuleSchema & static_schema() noexcept; |
| 73 | }; |
| 74 | |
| 75 | class ScaledBypassModule { |
| 76 | public: |
| 77 | const core::ModuleSchema & schema() const noexcept; |
| 78 | core::TensorValue build( |
| 79 | core::ModuleBuildContext & ctx, |
| 80 | const core::TensorValue & original, |
| 81 | const core::TensorValue & transformed, |
| 82 | const core::TensorValue & channel_scale) const; |
no outgoing calls
no test coverage detected