Skip to content

Commit

Permalink
Fixed constant op
Browse files Browse the repository at this point in the history
  • Loading branch information
ilyachur committed Jun 9, 2021
1 parent 6dbd840 commit 22161f6
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ngraph/core/include/ngraph/op/constant.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,8 @@ namespace ngraph
// Don't constant fold a constant; it would make a copy
bool constant_fold(OutputVector& outputs, const OutputVector& inputs) override
{
(void)outputs;
(void)inputs;
return false;
}

Expand Down

0 comments on commit 22161f6

Please sign in to comment.