Skip to content

Commit

Permalink
[luci] Set keep_num_dims of CircleFullyConnected when cloning (Samsun…
Browse files Browse the repository at this point in the history
…g#10452)

This commit sets keep_num_dims attribute of CircleFullyConnected when
cloning the node.

ONE-DCO-1.0-Signed-off-by: seongwoo <[email protected]>
  • Loading branch information
mhs4670go authored Feb 8, 2023
1 parent 9b7034b commit 4c21ae0
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions compiler/luci/service/src/Nodes/CircleFullyConnected.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ luci::CircleNode *CloneNodeLet<CN::DEF>::visit(const luci::CircleFullyConnected
{
cloned->fusedActivationFunction(node->fusedActivationFunction());
cloned->weights_format(node->weights_format());
cloned->keep_num_dims(node->keep_num_dims());
}
return cloned;
}
Expand Down

0 comments on commit 4c21ae0

Please sign in to comment.