Skip to content

Commit

Permalink
fix constant folding of Concat op (#675)
Browse files Browse the repository at this point in the history
  • Loading branch information
itikhono authored May 29, 2020
1 parent 09192b8 commit a4f13ae
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ngraph/src/ngraph/op/concat.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,8 @@ namespace
break;
TYPE_CASE(u64)(args, out, concatenation_axis);
break;
TYPE_CASE(f16)(args, out, concatenation_axis);
break;
TYPE_CASE(f32)(args, out, concatenation_axis);
break;
TYPE_CASE(f64)(args, out, concatenation_axis);
Expand Down

0 comments on commit a4f13ae

Please sign in to comment.