| 304 | } |
| 305 | |
| 306 | bool IsGpuCompatibleConv2D(const RemapperContext& ctx, const NodeDef* conv2d) { |
| 307 | DCHECK(IsConv2D(*conv2d)) << "Expected Conv2D op"; |
| 308 | return NodeIsOnGpu(conv2d) && IsGpuCompatibleDataType(conv2d) && |
| 309 | IsGpuCompatibleDataFormat(ctx, conv2d); |
| 310 | } |
| 311 | |
| 312 | bool IsGpuCompatibleMatMul(const RemapperContext& ctx, |
| 313 | const NodeDef* matmul) { |
no test coverage detected