| 31 | class HardSwish : public ElementwiseOperation { |
| 32 | public: |
| 33 | static std::unique_ptr<HardSwish> Create(const OperationDef& op_def) { |
| 34 | auto h_swish = absl::make_unique<HardSwish>(op_def); |
| 35 | h_swish->SetLinkIndex(0); |
| 36 | return h_swish; |
| 37 | } |
| 38 | |
| 39 | HardSwish() = delete; |
| 40 | explicit HardSwish(const OperationDef& op_def) |
nothing calls this directly
no test coverage detected