blob: 94f1fb892567fa8af2c85c6be815991c16e318b1 [file] [log] [blame]
//
// Copyright © 2017 Arm Ltd. All rights reserved.
// See LICENSE file in the project root for full license information.
//
#pragma once
#include <Layer.hpp>
namespace armnn
{
class ConvertFp16ToFp32Layer : public Layer
{
public:
virtual std::unique_ptr<IWorkload> CreateWorkload(const Graph& graph,
const IWorkloadFactory& factory) const override;
ConvertFp16ToFp32Layer* Clone(Graph& graph) const override;
void ValidateTensorShapesFromInputs() override;
protected:
ConvertFp16ToFp32Layer(const char* name);
~ConvertFp16ToFp32Layer() = default;
};
} // namespace