| 9 | // y = x_1 * x_2 |
| 10 | struct WeightNormalization : public Node { |
| 11 | explicit WeightNormalization(const std::initializer_list<VariableIndex>& a) : Node(a) {} |
| 12 | virtual bool supports_multibatch() const override { return false; } |
| 13 | DYNET_NODE_DEFINE_DEV_IMPL() |
| 14 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected