aboutsummaryrefslogtreecommitdiff
path: root/include/armnn/ILayerVisitor.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/armnn/ILayerVisitor.hpp')
-rw-r--r--include/armnn/ILayerVisitor.hpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/armnn/ILayerVisitor.hpp b/include/armnn/ILayerVisitor.hpp
index 80931ebcc0..9669b3a7cb 100644
--- a/include/armnn/ILayerVisitor.hpp
+++ b/include/armnn/ILayerVisitor.hpp
@@ -443,6 +443,14 @@ public:
const StackDescriptor& stackDescriptor,
const char* name = nullptr) = 0;
+ /// Function a StandInLayer should call back to when its Accept(ILaterVisitor&) function is invoked
+ /// @param layer - pointer to the layer which is calling back to this visit function.
+ /// @param standInDescriptor - Parameters for the stand-in layer.
+ /// @param name - Optional name for the layer.
+ virtual void VisitStandInLayer(const IConnectableLayer* layer,
+ const StandInDescriptor& standInDescriptor,
+ const char* name = nullptr) = 0;
+
/// Function a strided slice layer should call back to when its Accept(ILayerVisitor&) function is invoked.
/// @param layer - pointer to the layer which is calling back to this visit function.
/// @param stridedSliceDescriptor - Parameters for the strided slice operation.