From f63b457c48fa2aeb01d8cff52475d23e5644f8f4 Mon Sep 17 00:00:00 2001 From: Keith Davis Date: Wed, 19 Oct 2022 14:53:05 +0100 Subject: MLCE-545 INT8 TFLite model execution abnormal * Bug fix where files were being overwritten at each debug layer Signed-off-by: Keith Davis Change-Id: I609fdc82afcee925824efb02183c7dbc942fced0 --- src/backends/reference/workloads/Debug.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/backends/reference/workloads/Debug.cpp') diff --git a/src/backends/reference/workloads/Debug.cpp b/src/backends/reference/workloads/Debug.cpp index fdadfef590..f4f9792fc1 100644 --- a/src/backends/reference/workloads/Debug.cpp +++ b/src/backends/reference/workloads/Debug.cpp @@ -103,9 +103,10 @@ void Debug(const TensorInfo& inputInfo, { if (outputsToFile) { - auto rootPathToFile = armnnUtils::Filesystem::CreateDirectory("/ArmNNIntermediateLayerOutputs"); - std::ofstream out(rootPathToFile + layerName + ".numpy"); + fs::path tmpDir = fs::temp_directory_path(); + std::ofstream out(tmpDir.generic_string() + "/ArmNNIntermediateLayerOutputs/" + layerName + ".numpy"); PrintOutput(inputInfo, inputData, guid, layerName, slotIndex, out); + out.close(); } else { -- cgit v1.2.1