| 43 | const core::ModuleSchema & schema() const noexcept; |
| 44 | core::TensorValue build(core::ModuleBuildContext & ctx, const core::TensorValue & input) const; |
| 45 | static const core::ModuleSchema & static_schema() noexcept; |
| 46 | }; |
| 47 | |
| 48 | class TanhModule { |
| 49 | public: |
| 50 | const core::ModuleSchema & schema() const noexcept; |
| 51 | core::TensorValue build(core::ModuleBuildContext & ctx, const core::TensorValue & input) const; |
| 52 | static const core::ModuleSchema & static_schema() noexcept; |
| 53 | }; |
| 54 | |
| 55 | class SqrtModule { |
| 56 | public: |
| 57 | const core::ModuleSchema & schema() const noexcept; |
| 58 | core::TensorValue build(core::ModuleBuildContext & ctx, const core::TensorValue & input) const; |
| 59 | static const core::ModuleSchema & static_schema() noexcept; |
no outgoing calls
no test coverage detected