Skip to content

Commit

Permalink
[luci] fix typo (Samsung#1007)
Browse files Browse the repository at this point in the history
This commit fixes typo in luci

ONE-DCO-1.0-Signed-off-by: seongwoo <[email protected]>
  • Loading branch information
mhs4670go authored May 18, 2020
1 parent defee78 commit 7435705
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion compiler/luci/import/src/Nodes/CircleSplit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ void CircleSplitGraphBuilder::build(const circle::OperatorT &op, GraphBuilderCon
assert(outputs.size() > 0);
assert(int32_t(outputs.size()) == options->num_splits);
{
// Lets' use name of output 0 as Split name
// Let's use name of output 0 as Split name
const circle::TensorT &output_tensor = *tensors[outputs[0]];
node->name(tensor_name(output_tensor));

Expand Down
2 changes: 1 addition & 1 deletion compiler/luci/import/src/Nodes/CircleSplitV.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ void CircleSplitVGraphBuilder::build(const circle::OperatorT &op,
assert(outputs.size() > 0);
assert(int32_t(outputs.size()) == options->num_splits);
{
// Lets' use name of output 0 as Split name
// Let's use name of output 0 as Split name
const circle::TensorT &output_tensor = *tensors[outputs[0]];
node->name(tensor_name(output_tensor));

Expand Down
2 changes: 1 addition & 1 deletion compiler/luci/import/src/Nodes/CircleUnpack.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ void CircleUnpackGraphBuilder::build(const circle::OperatorT &op,
assert(outputs.size() > 0);
assert(int32_t(outputs.size()) == options->num);
{
// Lets' use name of output 0 as Unpack name
// Let's use name of output 0 as Unpack name
const circle::TensorT &output_tensor = *tensors[outputs[0]];
node->name(tensor_name(output_tensor));

Expand Down

0 comments on commit 7435705

Please sign in to comment.