ArmNN
 24.02
DeleteBroadcastTo.hpp
Go to the documentation of this file.
1 //
2 // Copyright © 2023 Arm Ltd and Contributors. All rights reserved.
3 // SPDX-License-Identifier: MIT
4 //
5 #pragma once
6 
7 #include "Optimization.hpp"
8 
9 namespace armnn
10 {
11 namespace optimizations
12 {
14 {
15 public:
16  /// Run for every BroadcastToLayer. Remove it if it is before an ElementWiseLayer.
17  /// Since ElementWiseBinary uses a brodcastLoop, using a broadcastTo layer is
18  /// not necessary so it will be deleted.
19  void Run(Graph&, BroadcastToLayer& layer) const
20  {
21  if(layer.GetType() == LayerType::BroadcastTo)
22  {
24  Layer& next = layer.GetOutputSlot(0).GetConnection(0)->GetOwningLayer();
26  {
27  Layer& connectedLayer = layer.GetInputSlots()[0].GetConnectedOutputSlot()->GetOwningLayer();
28  auto tensorInfo = connectedLayer.GetOutputSlot().GetTensorInfo();
29  layer.GetOutputSlot().MoveAllConnections(connectedLayer.GetOutputSlot());
30  connectedLayer.GetOutputSlot().GetOutputHandler().SetTensorInfo(tensorInfo);
31  }
32  }
33  }
34 protected:
35  DeleteBroadcastToImpl() = default;
36  ~DeleteBroadcastToImpl() = default;
37 };
39 }
40 }
armnn::InputSlot::GetOwningLayer
Layer & GetOwningLayer() const
Definition: Layer.hpp:53
armnn::OutputSlot::GetTensorInfo
const TensorInfo & GetTensorInfo() const override
Definition: Layer.cpp:92
armnn::optimizations::DeleteBroadcastToImpl::DeleteBroadcastToImpl
DeleteBroadcastToImpl()=default
armnn::OutputSlot::GetOutputHandler
const OutputHandler & GetOutputHandler() const
Definition: Layer.hpp:139
armnn::BroadcastToLayer
Definition: BroadcastToLayer.hpp:13
armnn::TensorInfo
Definition: Tensor.hpp:152
armnn::OutputHandler::SetTensorInfo
void SetTensorInfo(const TensorInfo &tensorInfo)
Sets the TensorInfo used by this output handler.
Definition: OutputHandler.cpp:15
armnn::Layer::GetOutputSlot
const OutputSlot & GetOutputSlot(unsigned int index=0) const override
Get the const output slot handle by slot index.
Definition: Layer.hpp:339
armnn::Layer::GetInputSlots
const std::vector< InputSlot > & GetInputSlots() const
Definition: Layer.hpp:258
Optimization.hpp
armnn::optimizations::DeleteBroadcastToImpl::Run
void Run(Graph &, BroadcastToLayer &layer) const
Run for every BroadcastToLayer.
Definition: DeleteBroadcastTo.hpp:19
armnn::LayerType::ElementwiseBinary
@ ElementwiseBinary
armnn::Layer
Definition: Layer.hpp:230
armnn::LayerType::BroadcastTo
@ BroadcastTo
armnn::optimizations::DeleteBroadcastToImpl
Definition: DeleteBroadcastTo.hpp:13
armnn::BoostLogSeverityMapping::info
@ info
armnn::OutputSlot::MoveAllConnections
void MoveAllConnections(OutputSlot &destination)
Moves all connections to another OutputSlot.
Definition: Layer.cpp:145
armnn::OptimizeForType
Definition: Optimization.hpp:67
armnn::optimizations::DeleteBroadcastToImpl::~DeleteBroadcastToImpl
~DeleteBroadcastToImpl()=default
armnn::Layer::GetType
LayerType GetType() const override
Returns the armnn::LayerType of this layer.
Definition: Layer.hpp:286
armnn
Copyright (c) 2021 ARM Limited and Contributors.
Definition: 01_00_quick_start.dox:6
armnn::OutputSlot::GetConnection
const InputSlot * GetConnection(unsigned int index) const override
Definition: Layer.cpp:75
armnn::Graph
Definition: Graph.hpp:30