Unverified Commit 639ff3f1 authored by Diego Caballero's avatar Diego Caballero Committed by GitHub

[MLIR] Fix warning: variable used uninitialized. (#4337)

Co-authored-by: 's avatarRobert Kimball <robert.kimball@intel.com>
Co-authored-by: 's avatarSang Ik Lee <sang.ik.lee@intel.com>
parent 5803d20f
......@@ -2112,6 +2112,10 @@ namespace
{
ty = OpType::MAXPOOL;
}
else
{
NGRAPH_UNREACHABLE("Unsupported pooling op");
}
auto unrankedMemrefTy = UnrankedMemRefType::get(elemTy, 0);
SmallVector<mlir::Value, 4> inputs = {lhs, result};
......
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