| 177 | } |
| 178 | |
| 179 | core::TensorValue LayerNormModule::build( |
| 180 | core::ModuleBuildContext & ctx, |
| 181 | const core::TensorValue & input, |
| 182 | const NormWeights & weights) const { |
| 183 | return build_norm(ctx, input, config_, weights, ggml_norm); |
| 184 | } |
| 185 | |
| 186 | const core::ModuleSchema & LayerNormModule::static_schema() noexcept { |
| 187 | return kLayerNormSchema; |
no test coverage detected