Skip to content

Commit

Permalink
[LPT] code style fix #1
Browse files Browse the repository at this point in the history
  • Loading branch information
v-Golubev authored and eshoguli committed Aug 3, 2020
1 parent 1646aba commit 53c5f0a
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ TEST_P(SplitTransformation, CompareFunctions) {

const std::vector<SplitTransformationTestValues> testValues = {
{
ngraph::Shape({ 1, 3, 16, 16 }), {2}, {2},
ngraph::Shape({ 1, 3, 16, 16 }), 2, 2,
LayerTransformation::createParamsU8I8(),
// ActualValues
{
Expand All @@ -121,7 +121,7 @@ const std::vector<SplitTransformationTestValues> testValues = {
}
},
{
ngraph::Shape({ 1, 3, 16, 16 }), {1}, {3},
ngraph::Shape({ 1, 3, 16, 16 }), 1, 3,
LayerTransformation::createParamsI8I8(),
// ActualValues
{
Expand Down Expand Up @@ -153,7 +153,7 @@ const std::vector<SplitTransformationTestValues> testValues = {
}
},
{
ngraph::Shape({ 1, 3, 16, 16 }), {-1}, {2},
ngraph::Shape({ 1, 3, 16, 16 }), -1, 2,
LayerTransformation::createParamsU8I8(),
// Actualvalues
{
Expand Down Expand Up @@ -185,7 +185,7 @@ const std::vector<SplitTransformationTestValues> testValues = {
}
},
{
ngraph::Shape({ 1, 3, 16, 16 }), {-3}, {3},
ngraph::Shape({ 1, 3, 16, 16 }), -3, 3,
LayerTransformation::createParamsI8I8(),
// ActualValues
{
Expand Down

0 comments on commit 53c5f0a

Please sign in to comment.