Skip to content

Commit

Permalink
update method name
Browse files Browse the repository at this point in the history
  • Loading branch information
zetwhite committed Oct 11, 2024
1 parent aaf077d commit fc93912
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion runtime/onert/backend/train/TensorBuilder.cc
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ bool TensorBuilder::isRegisteredLayerScopeTensor(const ir::OperationIndex &index
}

const util::Set<LayerScopeTensorIndex> &
TensorBuilder::getRegisteredLayerScopeTensorIndex(const ir::OperationIndex &index) const
TensorBuilder::getRegisteredLayerScopeTensorIndices(const ir::OperationIndex &index) const
{
const auto pair = _operation_to_layerscope.find(index);
assert(pair != _operation_to_layerscope.end());
Expand Down
2 changes: 1 addition & 1 deletion runtime/onert/backend/train/TensorBuilder.h
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ class TensorBuilder
bool isRegisteredLayerScopeTensor(const ir::OperationIndex &) const;

const util::Set<LayerScopeTensorIndex> &
getRegisteredLayerScopeTensorIndex(const ir::OperationIndex &) const;
getRegisteredLayerScopeTensorIndices(const ir::OperationIndex &) const;
LayerScopeTensorLifeTime getLayerScopeTensorLifeTime(const LayerScopeTensorIndex &) const;

void allocate(void);
Expand Down

0 comments on commit fc93912

Please sign in to comment.