Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[onert/train] Register LayerScopeTensor to registry #14235

Merged
merged 1 commit into from
Oct 21, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 37 additions & 1 deletion runtime/onert/backend/train/BackendContext.cc
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,43 @@ FunctionMap BackendContext::generateFunctionMap()

void BackendContext::planLayerScopeTensors([[maybe_unused]] const FunctionMap &fn_map)
{
// TODO: Register LayerScopeTensors
const auto &ops = trainable_graph()->operations();

auto register_tensors = [this](const ir::OperationIndex &op_idx,
std::optional<LayerScopeTensors> &&tensors) {
if (not tensors.has_value())
return;

auto ls_tensors = tensors.value();
for (auto i = 0u; i < ls_tensors.size(); ++i)
{
LayerScopeTensorIndex tensor_idx(op_idx, i);
_tensor_builder->registerLayerScopeTensor(tensor_idx, ls_tensors[i]);

VERBOSE(BackendContext) << "(idx:" << tensor_idx << ") registered" << std::endl;
}
return;
};

for (auto &pair : fn_map)
{
const auto &op_idx = pair.first;
auto &fn_seq = pair.second;

const ir::IOperation *op = &ops.at(op_idx);
const auto trainable_op = dynamic_cast<const ir::train::TrainableOperation *>(op);
assert(trainable_op != nullptr);

if (not trainable_op->isRequiredForBackward())
continue;

VERBOSE(BackendContext) << "register layerscope tensor for " << trainable_op->name()
<< std::endl;

fn_seq->iterate([&](exec::train::ITrainableFunction &fn) {
register_tensors(op_idx, (&fn)->registerLayerScopeTensors());
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

(&fn)->registerLayerScopeTensors() call this functions and each layer will override this function.

// Implement this if LayerScopeTensors is necessary
virtual std::optional<backend::train::LayerScopeTensors> registerLayerScopeTensors()
{
return std::nullopt;
}

});
}
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'll show log like this :

[ BackendContext ] register layerscope tensor for CategoricalCrossentropyLoss
[ BackendContext ] register layerscope tensor for Softmax
[ BackendContext ] register layerscope tensor for FullyConnected
[ BackendContext ] (idx:  @8-0) registered
[ BackendContext ] (idx:  @8-1) registered
[ BackendContext ] (idx:  @8-2) registered
[ BackendContext ] register layerscope tensor for FullyConnected
[ BackendContext ] (idx:  @7-0) registered
[ BackendContext ] (idx:  @7-1) registered
[ BackendContext ] (idx:  @7-2) registered
[ BackendContext ] (idx:  @7-3) registered
[ BackendContext ] register layerscope tensor for Reshape
[ BackendContext ] register layerscope tensor for MaxPool2D
[ BackendContext ] (idx:  @5-0) registered
[ BackendContext ] register layerscope tensor for Conv2D
[ BackendContext ] (idx:  @4-0) registered
[ BackendContext ] (idx:  @4-1) registered
[ BackendContext ] (idx:  @4-2) registered
[ BackendContext ] (idx:  @4-3) registered
[ BackendContext ] register layerscope tensor for Conv2D
[ BackendContext ] (idx:  @3-0) registered
[ BackendContext ] (idx:  @3-1) registered
[ BackendContext ] (idx:  @3-2) registered
[ BackendContext ] (idx:  @3-3) registered


const auto ctx_data = data();
TensorPlanner tensor_planner{*ctx_data->tgraph.get(), ctx_data->external_operands};
Expand Down