Unverified Commit 1d36daea authored by Scott Cyphers's avatar Scott Cyphers Committed by GitHub

Fix mac clang compiler error (#3806)

parent 7fd2f40f
...@@ -156,13 +156,13 @@ namespace ngraph ...@@ -156,13 +156,13 @@ namespace ngraph
// Split(bi-directional) and squeeze input data to remove 'num_direction' dimension. // Split(bi-directional) and squeeze input data to remove 'num_direction' dimension.
std::shared_ptr<Node> prepare_input(Output<Node> node, bool is_reverse) const; std::shared_ptr<Node> prepare_input(Output<Node> node, bool is_reverse) const;
const std::vector<float> m_activations_alpha; std::vector<float> m_activations_alpha;
const std::vector<float> m_activations_beta; std::vector<float> m_activations_beta;
const std::vector<std::string> m_activations; std::vector<std::string> m_activations;
const float m_clip_threshold; float m_clip_threshold;
const direction m_direction; direction m_direction;
const std::int64_t m_hidden_size; std::int64_t m_hidden_size;
const bool m_input_forget; bool m_input_forget;
}; };
} // namespace op } // namespace op
} // namespace ngraph } // namespace ngraph
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment