Home
last modified time | relevance | path

Searched refs:dataLayoutIndex (Results 1 – 4 of 4) sorted by relevance

/external/armnn/src/armnn/layers/
DConvolution2dLayer.cpp38 DataLayoutIndexed dataLayoutIndex(m_Param.m_DataLayout); in SerializeLayerParameters() local
39 unsigned int filterWidth = filterShape[dataLayoutIndex.GetWidthIndex()]; in SerializeLayerParameters()
40 unsigned int filterHeight = filterShape[dataLayoutIndex.GetHeightIndex()]; in SerializeLayerParameters()
76 DataLayoutIndexed dataLayoutIndex(m_Param.m_DataLayout); in InferOutputShapes() local
78 unsigned int inWidth = inputShape[dataLayoutIndex.GetWidthIndex()]; in InferOutputShapes()
79 unsigned int inHeight = inputShape[dataLayoutIndex.GetHeightIndex()]; in InferOutputShapes()
82 unsigned int filterWidth = filterShape[dataLayoutIndex.GetWidthIndex()]; in InferOutputShapes()
87 unsigned int filterHeight = filterShape[dataLayoutIndex.GetHeightIndex()]; in InferOutputShapes()
DTransposeConvolution2dLayer.cpp66 DataLayoutIndexed dataLayoutIndex(m_Param.m_DataLayout); in InferOutputShapes() local
70 const unsigned int wInput = inputShape[dataLayoutIndex.GetWidthIndex()]; in InferOutputShapes()
71 const unsigned int hInput = inputShape[dataLayoutIndex.GetHeightIndex()]; in InferOutputShapes()
73 const unsigned int wKernel = kernelShape[dataLayoutIndex.GetWidthIndex()]; in InferOutputShapes()
74 const unsigned int hKernel = kernelShape[dataLayoutIndex.GetHeightIndex()]; in InferOutputShapes()
DConvolution3dLayer.cpp74 DataLayoutIndexed dataLayoutIndex(m_Param.m_DataLayout); in InferOutputShapes() local
76 unsigned int inWidth = inputShape[dataLayoutIndex.GetWidthIndex()]; in InferOutputShapes()
77 unsigned int inHeight = inputShape[dataLayoutIndex.GetHeightIndex()]; in InferOutputShapes()
78 unsigned int inDepth = inputShape[dataLayoutIndex.GetDepthIndex()]; in InferOutputShapes()
DDepthwiseConvolution2dLayer.cpp76 DataLayoutIndexed dataLayoutIndex(m_Param.m_DataLayout); in InferOutputShapes() local
79 unsigned int inputHeight = inputShape[dataLayoutIndex.GetHeightIndex()]; in InferOutputShapes()
80 unsigned int inputWidth = inputShape[dataLayoutIndex.GetWidthIndex()]; in InferOutputShapes()