Align MaxPool op attribute 'rounding_type' to spec.

Attribute name should be in lower case.
This commit is contained in:
jdanieck 2020-11-05 15:15:58 +01:00
parent 9379247076
commit 243eeccff3
2 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@
std::vector<std::string> disabledTestPatterns() {
return {
// TODO: Issue 26264
R"(.*(MaxPool|AvgPool).*S\(1\.2\).*Rounding=CEIL.*)",
R"(.*(MaxPool|AvgPool).*S\(1\.2\).*Rounding=ceil.*)",
// TODO: Issue 31841
R"(.*(QuantGroupConvBackpropData3D).*)",
// TODO: Issue 31843

View File

@ -66,7 +66,7 @@ namespace ngraph
{
static auto enum_names = EnumNames<op::RoundingType>(
"op::RoundingType",
{{"FLOOR", op::RoundingType::FLOOR}, {"CEIL", op::RoundingType::CEIL}});
{{"floor", op::RoundingType::FLOOR}, {"ceil", op::RoundingType::CEIL}});
return enum_names;
}