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/backendsCommon/test/layerTests/DebugTestImpl.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/backends/backendsCommon') diff --git a/src/backends/backendsCommon/test/layerTests/DebugTestImpl.cpp b/src/backends/backendsCommon/test/layerTests/DebugTestImpl.cpp index fa9a825313..e2fa8dbf5a 100644 --- a/src/backends/backendsCommon/test/layerTests/DebugTestImpl.cpp +++ b/src/backends/backendsCommon/test/layerTests/DebugTestImpl.cpp @@ -70,7 +70,10 @@ LayerTestResult DebugTestImpl( if (toFile) { + // Given that this is dependent on an ExNet switch, we need to explicitly set the directory that the + // files are stored in as this happens within the ExNet flow fs::path tmpDir = fs::temp_directory_path(); + armnnUtils::Filesystem::CreateDirectory("/ArmNNIntermediateLayerOutputs"); std::string full_path = tmpDir.generic_string() + "/ArmNNIntermediateLayerOutputs/" + layerName + ".numpy"; ExecuteWorkload(*workload, memoryManager); -- cgit v1.2.1