aboutsummaryrefslogtreecommitdiff
path: root/src/backends/cl/workloads/ClQLstmWorkload.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/backends/cl/workloads/ClQLstmWorkload.cpp')
-rw-r--r--src/backends/cl/workloads/ClQLstmWorkload.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/backends/cl/workloads/ClQLstmWorkload.cpp b/src/backends/cl/workloads/ClQLstmWorkload.cpp
index 0ae371575b..d7c7af7e10 100644
--- a/src/backends/cl/workloads/ClQLstmWorkload.cpp
+++ b/src/backends/cl/workloads/ClQLstmWorkload.cpp
@@ -19,6 +19,12 @@ ClQLstmWorkload::ClQLstmWorkload(const QLstmQueueDescriptor& descriptor,
const arm_compute::CLCompileContext& clCompileContext)
: BaseWorkload<QLstmQueueDescriptor>(descriptor, info)
{
+ // Report Profiling Details
+ ARMNN_REPORT_PROFILING_WORKLOAD_DESC("ClQLstmWorkload_Construct",
+ descriptor.m_Parameters,
+ info,
+ this->GetGuid());
+
arm_compute::LSTMParams<arm_compute::ICLTensor> qLstmParams;
// Mandatory params
@@ -231,6 +237,7 @@ ClQLstmWorkload::ClQLstmWorkload(const QLstmQueueDescriptor& descriptor,
void ClQLstmWorkload::Execute() const
{
+ ARMNN_SCOPED_PROFILING_EVENT_CL_GUID("ClQuantizedLstmWorkload_Execute", this->GetGuid());
m_QLstmLayer.run();
}