aboutsummaryrefslogtreecommitdiff
path: root/src/dynamic_fusion/sketch/gpu/components/cl/ClComponentActivation.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/dynamic_fusion/sketch/gpu/components/cl/ClComponentActivation.h')
-rw-r--r--src/dynamic_fusion/sketch/gpu/components/cl/ClComponentActivation.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/dynamic_fusion/sketch/gpu/components/cl/ClComponentActivation.h b/src/dynamic_fusion/sketch/gpu/components/cl/ClComponentActivation.h
index d5013acddf..0b7f664a15 100644
--- a/src/dynamic_fusion/sketch/gpu/components/cl/ClComponentActivation.h
+++ b/src/dynamic_fusion/sketch/gpu/components/cl/ClComponentActivation.h
@@ -24,6 +24,7 @@
#ifndef SRC_DYNAMIC_FUSION_SKETCH_GPU_COMPONENTS_CL_CLCOMPONENTACTIVATION
#define SRC_DYNAMIC_FUSION_SKETCH_GPU_COMPONENTS_CL_CLCOMPONENTACTIVATION
+#include "arm_compute/core/ActivationLayerInfo.h"
#include "src/dynamic_fusion/sketch/gpu/components/IGpuKernelComponent.h"
namespace arm_compute
@@ -40,6 +41,7 @@ class ArgumentPack;
/** Forward declaration */
class ClTemplateActivation;
+class GpuCkwActivation;
class ClComponentActivation final : public IGpuKernelComponent
{
@@ -105,6 +107,8 @@ public:
/** Get template writer for the component */
const IGpuTemplateComponentWriter *template_writer() const override;
+ const IGpuCkwComponentDriver *ckw_component_driver() const override;
+
/** Get component type */
GpuComponentType type() const override
{
@@ -113,6 +117,7 @@ public:
private:
std::unique_ptr<ClTemplateActivation> _component_writer;
+ std::unique_ptr<GpuCkwActivation> _ckw_driver;
};
} // namespace dynamic_fusion
} // namespace experimental