aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/backends/ClWorkloads/ClSoftmaxUint8Workload.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/armnn/backends/ClWorkloads/ClSoftmaxUint8Workload.hpp')
-rw-r--r--src/armnn/backends/ClWorkloads/ClSoftmaxUint8Workload.hpp10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/armnn/backends/ClWorkloads/ClSoftmaxUint8Workload.hpp b/src/armnn/backends/ClWorkloads/ClSoftmaxUint8Workload.hpp
index 07ee6256d8..36c2c781aa 100644
--- a/src/armnn/backends/ClWorkloads/ClSoftmaxUint8Workload.hpp
+++ b/src/armnn/backends/ClWorkloads/ClSoftmaxUint8Workload.hpp
@@ -7,13 +7,18 @@
#include "backends/ClWorkloadUtils.hpp"
+#include "arm_compute/runtime/MemoryManagerOnDemand.h"
+
+#include <memory>
+
namespace armnn
{
// Softmax
class ClSoftmaxUint8Workload : public Uint8Workload<SoftmaxQueueDescriptor>
{
public:
- ClSoftmaxUint8Workload(const SoftmaxQueueDescriptor& descriptor, const WorkloadInfo& info);
+ ClSoftmaxUint8Workload(const SoftmaxQueueDescriptor& descriptor, const WorkloadInfo& info,
+ std::shared_ptr<arm_compute::MemoryManagerOnDemand>& memoryManager);
void Execute() const override;
private:
@@ -23,6 +28,3 @@ private:
} //namespace armnn
-
-
-