| 37 | const NormWeights & weights) const; |
| 38 | |
| 39 | static const core::ModuleSchema & static_schema() noexcept; |
| 40 | |
| 41 | private: |
| 42 | NormConfig config_; |
| 43 | }; |
| 44 | |
| 45 | class RMSNormModule { |
| 46 | public: |
| 47 | explicit RMSNormModule(NormConfig config); |
| 48 | |
| 49 | const core::ModuleSchema & schema() const noexcept; |
| 50 | const NormConfig & config() const noexcept; |
| 51 | |
| 52 | core::TensorValue build( |
| 53 | core::ModuleBuildContext & ctx, |
| 54 | const core::TensorValue & input, |
| 55 | const NormWeights & weights) const; |
| 56 | |
| 57 | static const core::ModuleSchema & static_schema() noexcept; |
| 58 |
no outgoing calls
no test coverage detected