| 411 | // Returns true if the given pattern is supported on the assigned device. |
| 412 | template <typename Pattern> |
| 413 | bool IsDeviceCompatible(const RemapperContext& ctx, Pattern& matched) { |
| 414 | return IsCpuCompatible(ctx, matched) || IsGpuCompatible(ctx, matched); |
| 415 | } |
| 416 | |
| 417 | bool IsSupportedActivation(const NodeDef& node) { |
| 418 | if (!DisableMKL()) { |
no test coverage detected