-
Notifications
You must be signed in to change notification settings - Fork 158
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[onert-micro] Introduce TrainingGraph class
This commit introduces TrainingGraph class. ONE-DCO-1.0-Signed-off-by: Vyacheslav Bazhenov <[email protected]> ONE-DCO-1.0-Signed-off-by: Artem Balyshev <[email protected]>
- Loading branch information
Vyacheslav Bazhenov
committed
Aug 31, 2023
1 parent
2cb3063
commit 87032c4
Showing
3 changed files
with
211 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
144 changes: 144 additions & 0 deletions
144
onert-micro/luci-interpreter/src/core/TrainingGraph.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,144 @@ | ||
/* | ||
* Copyright (c) 2023 Samsung Electronics Co., Ltd. All Rights Reserved | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
#ifdef ENABLE_TRAINING | ||
|
||
#include "TrainingGraph.h" | ||
|
||
#include "kernels/KernelBuilder.h" | ||
|
||
#include <unordered_map> | ||
|
||
namespace luci_interpreter | ||
{ | ||
namespace training | ||
{ | ||
|
||
Status TrainingGraph::saveLabelDataAsBackDerivative(CircleReader *reader, | ||
TrainableWeightStorage *storage, | ||
const uint8_t *label_train_data) | ||
{ | ||
Status status; | ||
|
||
const auto graph_outputs = reader->outputs(); | ||
assert(graph_outputs.size() == 1); | ||
if (graph_outputs.size() != 1) | ||
return Error; | ||
|
||
const circle::Tensor *output_graph_tensor = reader->tensors()[graph_outputs[0]]; | ||
|
||
uint8_t *output_data = nullptr; | ||
status = _gradient_calculation_storage.getDataByTensor(output_graph_tensor, &output_data); | ||
if (status != Ok) | ||
return status; | ||
|
||
assert(output_data != nullptr); | ||
if (output_data == nullptr) | ||
return Error; | ||
|
||
const auto tensor_size = Tensor::num_elements(output_graph_tensor); | ||
const auto tensor_type = Tensor::element_type(output_graph_tensor); | ||
|
||
switch (tensor_type) | ||
{ | ||
case DataType::FLOAT32: | ||
{ | ||
float *casted_output_data = reinterpret_cast<float *>(output_data); | ||
const float *casted_label_data = reinterpret_cast<const float *>(label_train_data); | ||
|
||
// For MSE | ||
for (int i = 0; i < tensor_size; ++i) | ||
casted_output_data[i] = casted_output_data[i] - casted_label_data[i]; | ||
|
||
break; | ||
} | ||
default: | ||
{ | ||
assert(false && "Unsupported type"); | ||
return Error; | ||
} | ||
} | ||
|
||
return Ok; | ||
} | ||
|
||
Status TrainingGraph::computeGradients(const TrainingSettings &settings, | ||
TrainableWeightStorage *storage, CircleReader *reader, | ||
const uint8_t *label_train_data) | ||
{ | ||
assert(settings.number_of_last_trainable_layers != 0); | ||
|
||
const int last_op_pos = reader->operators().size() - 1; | ||
const int last_train_op_pos = settings.number_of_last_trainable_layers > 0 | ||
? last_op_pos - settings.number_of_last_trainable_layers | ||
: -1; | ||
Status status; | ||
|
||
// Save label_data as gradient to output tensor | ||
status = saveLabelDataAsBackDerivative(reader, storage, label_train_data); | ||
if (status != Ok) | ||
return status; | ||
|
||
for (auto op_pos = last_op_pos; op_pos > last_train_op_pos; --op_pos) | ||
{ | ||
const auto op = reader->operators().at(op_pos); | ||
const auto opcode = reader->builtin_code(op); | ||
|
||
status = kernel_train.train_kernel(op, opcode, reader, &_gradient_calculation_storage, settings, | ||
storage, true /* compute gradient mode */); | ||
|
||
if (status != Ok) | ||
return status; | ||
} | ||
|
||
_gradient_calculation_storage.clearComputedData(); | ||
|
||
return Ok; | ||
} | ||
|
||
Status TrainingGraph::updateWeights(const TrainingSettings &settings, | ||
TrainableWeightStorage *storage, CircleReader *reader) | ||
{ | ||
const int last_op_pos = reader->operators().size() - 1; | ||
const int last_train_op_pos = settings.number_of_last_trainable_layers > 0 | ||
? last_op_pos - settings.number_of_last_trainable_layers | ||
: -1; | ||
Status status; | ||
for (auto op_pos = last_op_pos; op_pos > last_train_op_pos; --op_pos) | ||
{ | ||
const auto op = reader->operators().at(op_pos); | ||
const auto opcode = reader->builtin_code(op); | ||
|
||
status = kernel_train.train_kernel(op, opcode, reader, &_gradient_calculation_storage, settings, | ||
storage, false /* update weights mode */); | ||
|
||
assert(status == Ok); | ||
|
||
if (status != Ok) | ||
{ | ||
return status; | ||
} | ||
} | ||
_gradient_calculation_storage.clearComputedData(); | ||
_gradient_calculation_storage.clearComputedGradients(); | ||
|
||
return Ok; | ||
} | ||
|
||
} // namespace training | ||
} // namespace luci_interpreter | ||
|
||
#endif // ENABLE_TRAINING |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
/* | ||
* Copyright (c) 2023 Samsung Electronics Co., Ltd. All Rights Reserved | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
#ifdef ENABLE_TRAINING | ||
|
||
#ifndef LUCI_INTERPRETER_SRC_CORE_TRAINING_GRAPH_H | ||
#define LUCI_INTERPRETER_SRC_CORE_TRAINING_GRAPH_H | ||
|
||
#include "luci_interpreter/TrainingSettings.h" | ||
#include "luci_interpreter/core/TrainableWeightStorage.h" | ||
#include "luci_interpreter/core/reader/CircleMicroReader.h" | ||
#include "memory_managers/SimpleMemoryManager.h" | ||
|
||
#include "GradientCalculationStorage.h" | ||
|
||
#include <unordered_map> | ||
|
||
namespace luci_interpreter | ||
{ | ||
namespace training | ||
{ | ||
|
||
class TrainingGraph | ||
{ | ||
public: | ||
TrainingGraph() = default; | ||
|
||
public: | ||
Status computeGradients(const TrainingSettings &settings, TrainableWeightStorage *storage, | ||
CircleReader *reader, const uint8_t *label_train_data); | ||
|
||
Status updateWeights(const TrainingSettings &settings, TrainableWeightStorage *storage, | ||
CircleReader *reader); | ||
|
||
GradientCalculationStorage *getGradientCalculationStorage() | ||
{ | ||
return &_gradient_calculation_storage; | ||
} | ||
|
||
private: | ||
Status saveLabelDataAsBackDerivative(CircleReader *reader, TrainableWeightStorage *storage, | ||
const uint8_t *label_train_data); | ||
|
||
GradientCalculationStorage _gradient_calculation_storage; | ||
}; | ||
|
||
} // namespace training | ||
} // namespace luci_interpreter | ||
|
||
#endif // LUCI_INTERPRETER_SRC_CORE_TRAINING_GRAPH_H | ||
|
||
#endif // ENABLE_TRAINING |