aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/layers/FullyConnectedLayer.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/armnn/layers/FullyConnectedLayer.hpp')
-rw-r--r--src/armnn/layers/FullyConnectedLayer.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/armnn/layers/FullyConnectedLayer.hpp b/src/armnn/layers/FullyConnectedLayer.hpp
index c45b081c85..7fc7b0d596 100644
--- a/src/armnn/layers/FullyConnectedLayer.hpp
+++ b/src/armnn/layers/FullyConnectedLayer.hpp
@@ -9,16 +9,16 @@
namespace armnn
{
-class ScopedCpuTensorHandle;
+class ScopedTensorHandle;
/// This layer represents a fully connected operation.
class FullyConnectedLayer : public LayerWithParameters<FullyConnectedDescriptor>
{
public:
/// A unique pointer to store Weight values.
- std::shared_ptr<ConstCpuTensorHandle> m_Weight;
+ std::shared_ptr<ConstTensorHandle> m_Weight;
/// A unique pointer to store Bias values.
- std::shared_ptr<ConstCpuTensorHandle> m_Bias;
+ std::shared_ptr<ConstTensorHandle> m_Bias;
/// Makes a workload for the FullyConnected type.
/// @param [in] graph The graph where this layer can be found.