aboutsummaryrefslogtreecommitdiff
path: root/src/dynamic_fusion/sketch/gpu/components/cl/ClComponentDirectConv2d.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/dynamic_fusion/sketch/gpu/components/cl/ClComponentDirectConv2d.h')
-rw-r--r--src/dynamic_fusion/sketch/gpu/components/cl/ClComponentDirectConv2d.h11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/dynamic_fusion/sketch/gpu/components/cl/ClComponentDirectConv2d.h b/src/dynamic_fusion/sketch/gpu/components/cl/ClComponentDirectConv2d.h
index fec22b84a5..c3a70ef3ae 100644
--- a/src/dynamic_fusion/sketch/gpu/components/cl/ClComponentDirectConv2d.h
+++ b/src/dynamic_fusion/sketch/gpu/components/cl/ClComponentDirectConv2d.h
@@ -25,6 +25,7 @@
#define SRC_DYNAMIC_FUSION_SKETCH_GPU_COMPONENTS_CL_CLCOMPONENTDIRECTCONV2D
#include "arm_compute/core/Error.h"
+#include "arm_compute/core/KernelDescriptors.h"
#include "src/dynamic_fusion/sketch/gpu/components/IGpuKernelComponent.h"
#include <memory>
@@ -56,9 +57,15 @@ public:
/** Get fast_relaxed_math flag */
bool fast_relaxed_math() const;
+ /** Set direct convolution descriptor */
+ ClComponentDirectConv2dSettings &direct_conv_descriptor(const DirectConvComputeKernelInfo &desc);
+ /** Get direct convolution descriptor */
+ DirectConvComputeKernelInfo direct_conv_descriptor() const;
+
private:
- bool _export_to_cl_image{ false };
- bool _fast_relaxed_math{ true };
+ bool _export_to_cl_image{ false };
+ bool _fast_relaxed_math{ true };
+ DirectConvComputeKernelInfo _desc{}; // Direct convolution descriptor
};
/** Forward declaration */