| 23 | }; |
| 24 | |
| 25 | class Conv1dModule { |
| 26 | public: |
| 27 | explicit Conv1dModule(Conv1dConfig config); |
| 28 | |
| 29 | const Conv1dConfig & config() const noexcept; |
| 30 | const core::ModuleSchema & schema() const noexcept; |
| 31 | |
| 32 | core::TensorValue build( |
| 33 | core::ModuleBuildContext & ctx, |
| 34 | const core::TensorValue & input, |
| 35 | const Conv1dWeights & weights) const; |
| 36 | |
| 37 | static const core::ModuleSchema & static_schema() noexcept; |
| 38 | |
| 39 | private: |
| 40 | Conv1dConfig config_; |
| 41 | }; |
| 42 | |
| 43 | // Raw Metal fast paths on channel-fast activations (ne = [channels, frames], contiguous |
| 44 | // F32) for the audio codec decoder's chained regions. Unlike the module build() methods |
no outgoing calls
no test coverage detected