| 144 | }; |
| 145 | |
| 146 | class Interpolate1dModule { |
| 147 | public: |
| 148 | explicit Interpolate1dModule(Interpolate1dConfig config); |
| 149 | |
| 150 | const Interpolate1dConfig & config() const noexcept; |
| 151 | const core::ModuleSchema & schema() const noexcept; |
| 152 | core::TensorValue build(core::ModuleBuildContext & ctx, const core::TensorValue & input) const; |
| 153 | static const core::ModuleSchema & static_schema() noexcept; |
| 154 | |
| 155 | private: |
| 156 | Interpolate1dConfig config_; |
| 157 | }; |
| 158 | |
| 159 | class MaskingModule { |
| 160 | public: |
no outgoing calls
no test coverage detected