aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/layers/ResizeBilinearLayer.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/armnn/layers/ResizeBilinearLayer.hpp')
-rw-r--r--src/armnn/layers/ResizeBilinearLayer.hpp27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/armnn/layers/ResizeBilinearLayer.hpp b/src/armnn/layers/ResizeBilinearLayer.hpp
new file mode 100644
index 0000000000..2cefedb0b8
--- /dev/null
+++ b/src/armnn/layers/ResizeBilinearLayer.hpp
@@ -0,0 +1,27 @@
+//
+// Copyright © 2017 Arm Ltd. All rights reserved.
+// See LICENSE file in the project root for full license information.
+//
+#pragma once
+
+#include "LayerWithParameters.hpp"
+
+namespace armnn
+{
+
+class ResizeBilinearLayer : public LayerWithParameters<ResizeBilinearDescriptor>
+{
+public:
+ virtual std::unique_ptr<IWorkload>
+ CreateWorkload(const Graph& graph, const IWorkloadFactory& factory) const override;
+
+ ResizeBilinearLayer* Clone(Graph& graph) const override;
+
+ void ValidateTensorShapesFromInputs() override;
+
+protected:
+ ResizeBilinearLayer(const ResizeBilinearDescriptor& param, const char* name);
+ ~ResizeBilinearLayer() = default;
+};
+
+} // namespace