24.02
|
Go to the documentation of this file.
17 unsigned int numOutputSlots,
20 :
Layer(numInputSlots, numOutputSlots, type, name)
29 if (inputShapes[0].GetNumDimensions() < inputShapes[1].GetNumDimensions())
31 input1 = inputShapes[0];
32 input0 = inputShapes[1];
39 std::vector<unsigned int> dims(numDims);
40 for (
unsigned int i = shiftedDims; i < numDims; i++)
42 unsigned int dim0 = input0[i];
43 unsigned int dim1 = input1[i - shiftedDims];
47 "Dimensions should either match or one should be of size 1.");
49 dims[i] = std::max(dim0, dim1);
53 for (
unsigned int i = 0; i < shiftedDims; i++)
58 return std::vector<TensorShape>({
TensorShape(numDims, dims.data()) });
#define ARMNN_ASSERT(COND)
const char * GetLayerTypeAsCString(LayerType type)
const TensorInfo & GetTensorInfo() const override
void ValidateAndCopyShape(const TensorShape &outputShape, const TensorShape &inferredShape, const ShapeInferenceMethod shapeInferenceMethod, const std::string &layerName, const unsigned int outputSlotIndex=0)
const OutputSlot & GetOutputSlot(unsigned int index=0) const override
Get the const output slot handle by slot index.
#define ARMNN_ASSERT_MSG(COND, MSG)
const InputSlot & GetInputSlot(unsigned int index) const override
Get a const input slot handle by slot index.
const char * GetName() const override
Returns the name of the layer.
unsigned int GetNumDimensions() const
Function that returns the tensor rank.
void VerifyShapeInferenceType(const TensorShape &outputShape, ShapeInferenceMethod shapeInferenceMethod)
Base class for all descriptors.
void ExecuteStrategy(IStrategy &strategy) const override
Apply a visitor to this layer.
LayerType GetType() const override
Returns the armnn::LayerType of this layer.
const TensorShape & GetShape() const
Copyright (c) 2021 ARM Limited and Contributors.
void VerifyLayerConnections(unsigned int expectedConnections, const CheckLocation &location) const
void ValidateTensorShapesFromInputs() override
Check if the input tensor shape(s) will lead to a valid configuration of the element wise operation.
ElementwiseBaseLayer(unsigned int numInputSlots, unsigned int numOutputSlots, LayerType type, const char *name)
ShapeInferenceMethod m_ShapeInferenceMethod
LayerType
When adding a new layer, adapt also the LastLayer enum value in the enum class LayerType below.
virtual void ExecuteStrategy(const IConnectableLayer *layer, const armnn::BaseDescriptor &descriptor, const std::vector< armnn::ConstTensor > &constants, const char *name, const armnn::LayerBindingId id=0)=0
std::vector< TensorShape > InferOutputShapes(const std::vector< TensorShape > &inputShapes) const override
By default returns inputShapes if the number of inputs are equal to number of outputs,...