blob: 2225a299359210c597df1b5d1723c9568c1d8df5 [file] [log] [blame]
//
// Copyright © 2017 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//
#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