aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/layers/SoftmaxLayer.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/armnn/layers/SoftmaxLayer.hpp')
-rw-r--r--src/armnn/layers/SoftmaxLayer.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/armnn/layers/SoftmaxLayer.hpp b/src/armnn/layers/SoftmaxLayer.hpp
index ff60a08a91..af39dbb5ec 100644
--- a/src/armnn/layers/SoftmaxLayer.hpp
+++ b/src/armnn/layers/SoftmaxLayer.hpp
@@ -9,19 +9,19 @@
namespace armnn
{
-class Pooling2dLayer : public LayerWithParameters<Pooling2dDescriptor>
+class SoftmaxLayer : public LayerWithParameters<SoftmaxDescriptor>
{
public:
virtual std::unique_ptr<IWorkload> CreateWorkload(const Graph& graph,
const IWorkloadFactory& factory) const override;
- Pooling2dLayer* Clone(Graph& graph) const override;
+ SoftmaxLayer* Clone(Graph& graph) const override;
void ValidateTensorShapesFromInputs() override;
protected:
- Pooling2dLayer(const Pooling2dDescriptor& param, const char* name);
- ~Pooling2dLayer() = default;
+ SoftmaxLayer(const SoftmaxDescriptor& param, const char* name);
+ ~SoftmaxLayer() = default;
};
} // namespace