| 53 | const core::ModuleSchema & schema() const noexcept; |
| 54 | core::TensorValue build( |
| 55 | core::ModuleBuildContext & ctx, |
| 56 | const core::TensorValue & input, |
| 57 | const core::TensorValue & residual) const; |
| 58 | |
| 59 | static const core::ModuleSchema & static_schema() noexcept; |
| 60 | }; |
| 61 | |
| 62 | struct ReduceConfig { |
| 63 | int axis = -1; |
| 64 | }; |
| 65 | |
| 66 | class ReduceMeanModule { |
| 67 | public: |
| 68 | explicit ReduceMeanModule(ReduceConfig config); |
| 69 |
no outgoing calls
no test coverage detected