summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--nn/runtime/ExecutionPlan.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/nn/runtime/ExecutionPlan.cpp b/nn/runtime/ExecutionPlan.cpp
index 573f8a562..1a55b2951 100644
--- a/nn/runtime/ExecutionPlan.cpp
+++ b/nn/runtime/ExecutionPlan.cpp
@@ -1522,11 +1522,13 @@ void PlanModelSlicer::initializeSlice(Slice<T_SlicedModel>* slice) {
std::ostrstream fromName;
fromName << "Slice: From " << ModelVersion<decltype(mHidlModel)>::name << std::ends;
graphDump(fromName.str(), mHidlModel);
+ fromName.freeze(false);
}
{
std::ostrstream toName;
toName << "Slice: To " << ModelVersion<decltype(slice->mHidlModel)>::name << std::ends;
graphDump(toName.str(), convertToV1_2(slice->mHidlModel));
+ toName.freeze(false);
}
}