aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/JsonPrinter.hpp
diff options
context:
space:
mode:
authorCathal Corbett <cathal.corbett@arm.com>2022-02-25 15:33:28 +0000
committerCathal Corbett <cathal.corbett@arm.com>2022-03-01 11:44:14 +0000
commit5aa9fd7ac6bf8dad576fa4a0a32aa3dae98d11ab (patch)
tree23a3a0d5ca5143924277f34c98d36cf7b99430a7 /src/armnn/JsonPrinter.hpp
parent1fc448ad2455ad31b96a3891f847125a3295d75a (diff)
downloadarmnn-5aa9fd7ac6bf8dad576fa4a0a32aa3dae98d11ab.tar.gz
IVGCVSW-6704 Change the namespace from armnn::profiling to arm::pipe
* Updated ABI version to 29 due to being the first ABI break in 22.05 !android-nn-driver:7226 Signed-off-by: Cathal Corbett <cathal.corbett@arm.com> Change-Id: I9c50007dcd5b5e792757e7bd1213606df5ffec36
Diffstat (limited to 'src/armnn/JsonPrinter.hpp')
-rw-r--r--src/armnn/JsonPrinter.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/armnn/JsonPrinter.hpp b/src/armnn/JsonPrinter.hpp
index d9b83869d7..05b6e6a510 100644
--- a/src/armnn/JsonPrinter.hpp
+++ b/src/armnn/JsonPrinter.hpp
@@ -51,9 +51,9 @@ struct JsonChildObject
}
}
- void SetGuid(profiling::ProfilingGuid guid)
+ void SetGuid(arm::pipe::ProfilingGuid guid)
{
- m_Guid = Optional<profiling::ProfilingGuid>(guid);
+ m_Guid = Optional<arm::pipe::ProfilingGuid>(guid);
}
void AddChild(const JsonChildObject& childObject)
@@ -101,7 +101,7 @@ struct JsonChildObject
std::string m_Label;
Measurement::Unit m_Unit;
JsonObjectType m_Type;
- Optional<profiling::ProfilingGuid> m_Guid;
+ Optional<arm::pipe::ProfilingGuid> m_Guid;
std::vector<double> m_Measurements;
std::vector<std::string> m_LayerDetailsList;
std::vector<JsonChildObject> m_Children;
@@ -118,7 +118,7 @@ public:
void PrintLabel(const std::string& label, size_t id);
void PrintUnit(armnn::Measurement::Unit unit);
void PrintType(armnn::JsonObjectType type);
- void PrintGuid(armnn::profiling::ProfilingGuid guid);
+ void PrintGuid(arm::pipe::ProfilingGuid guid);
void PrintMeasurementsList(const std::vector<double>& measurementsVector);
public: