Skip to content

Commit

Permalink
[LPT] code style fix #2
Browse files Browse the repository at this point in the history
  • Loading branch information
v-Golubev committed Jul 30, 2020
1 parent cc79de9 commit 68253ec
Showing 1 changed file with 5 additions and 5 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 }), std::int64_t{2}, size_t{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 }), std::int64_t{1}, size_t{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 }), std::int64_t{-1}, size_t{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 }), std::int64_t{-3}, size_t{3},
LayerTransformation::createParamsI8I8(),
// ActualValues
{
Expand Down Expand Up @@ -217,7 +217,7 @@ const std::vector<SplitTransformationTestValues> testValues = {
}
},
{
ngraph::Shape({ 1, 3, 4, 4 }), {2}, {2},
ngraph::Shape({ 1, 3, 4, 4 }), std::int64_t{2}, size_t{2},
LayerTransformation::createParamsI8I8(),
// ActualValues
{
Expand Down

0 comments on commit 68253ec

Please sign in to comment.