blob: e6798ce531bb2f544ddd2b7d65e2ba6530ad5f52 [file] [log] [blame]
//
// 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;
std::vector<TensorShape> InferOutputShapes(const std::vector<TensorShape>& inputShapes) const override;
protected:
ResizeBilinearLayer(const ResizeBilinearDescriptor& param, const char* name);
~ResizeBilinearLayer() = default;
};
} // namespace