Skip to content

Commit

Permalink
[NVIDIA] Aligned name convention check: snake case
Browse files Browse the repository at this point in the history
  • Loading branch information
a-sidorova committed Nov 13, 2023
1 parent 6707c80 commit 2f31c14
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ void MemoryModelBuilder::addAllocation(BufferID id, int producerIndex, int lastC
MemoryModel::Ptr MemoryModelBuilder::build() {
ov::MemorySolver solver{boxes_};
const size_t blob_size = solver.solve();
for (auto& pair : offsets_) pair.second = solver.getOffset(pair.first);
for (auto& pair : offsets_) pair.second = solver.get_offset(pair.first);

return std::make_shared<MemoryModel>(blob_size, offsets_);
}
Expand Down

0 comments on commit 2f31c14

Please sign in to comment.