Searched defs:DivisionTest (Results 1 – 2 of 2) sorted by relevance
245 struct DivisionTest struct247 using LayerType = armnn::DivisionLayer;248 static std::string GetReceiverLayerName() { return "Division"; }; in GetReceiverLayerName()249 static const bool isElementWise = true;251 static TensorShape GetInputShape() { return TensorShape( {1, 4, 4, 3}); } // NHWCin in GetInputShape()252 static TensorShape GetOutputShape() { return TensorShape( {1, 4, 4, 3}); } // NHWCout in GetOutputShape()254 constexpr static const unsigned int inputSize = 48; // batchIn * heightIn * widthIn * channelIn255 …onstexpr static const unsigned int outputSize = 48; // batchOut * heightOut * widthOut * channelOut257 static IConnectableLayer* AddReceiverLayer(INetwork* network, in AddReceiverLayer()
62 LayerTestResult<float, 4> DivisionTest( in DivisionTest() function