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.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/dynamic_fusion/sketch/gpu/components/cl/ClComponentDirectConv2d.h b/src/dynamic_fusion/sketch/gpu/components/cl/ClComponentDirectConv2d.h
index c3a70ef3ae..8e555dce57 100644
--- a/src/dynamic_fusion/sketch/gpu/components/cl/ClComponentDirectConv2d.h
+++ b/src/dynamic_fusion/sketch/gpu/components/cl/ClComponentDirectConv2d.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2022 Arm Limited.
+ * Copyright (c) 2022-2023 Arm Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -47,8 +47,6 @@ class Conv2dAttributes;
class ClComponentDirectConv2dSettings
{
public:
- /** Set export_to_cl_image flag */
- ClComponentDirectConv2dSettings &export_to_cl_image(bool cl_image);
/** Get export_to_cl_image flag */
bool export_to_cl_image() const;
@@ -63,7 +61,6 @@ public:
DirectConvComputeKernelInfo direct_conv_descriptor() const;
private:
- bool _export_to_cl_image{ false };
bool _fast_relaxed_math{ true };
DirectConvComputeKernelInfo _desc{}; // Direct convolution descriptor
};