| 415 | } |
| 416 | |
| 417 | bool IsSupportedActivation(const NodeDef& node) { |
| 418 | if (!DisableMKL()) { |
| 419 | return IsRelu(node) || IsRelu6(node) || IsElu(node) || IsGelu(node) || |
| 420 | IsLeakyRelu(node) || IsTanh(node); |
| 421 | } |
| 422 | return IsRelu(node) || IsRelu6(node) || IsElu(node) || IsLeakyRelu(node); |
| 423 | } |
| 424 | |
| 425 | inline bool HasControlFaninOrFanout(const utils::MutableNodeView& node_view) { |
| 426 | return node_view.NumControllingFanins() > 0 || |
no test coverage detected