#ifndef MIGRAPHX_GUARD_OPERATORS_COMMON_HPP #define MIGRAPHX_GUARD_OPERATORS_COMMON_HPP #include #include namespace migraphx { inline namespace MIGRAPHX_INLINE_NS { namespace op { enum padding_mode_t { default_, // NOLINT same, valid }; // indicate rnn computation direction enum class rnn_direction { forward, reverse, bidirectional, }; std::ostream& operator<<(std::ostream& os, rnn_direction v); } // namespace op } // namespace MIGRAPHX_INLINE_NS } // namespace migraphx #endif