Lines Matching refs:outShape

42     Shape outShape = model->getShape(outs[0]);  in addMul()  local
43 HEXAGON_SOFT_ASSERT(addMulPrepare(in1Shape, in2Shape, &outShape), "Error getting shape"); in addMul()
44 HEXAGON_SOFT_ASSERT(model->setShape(outs[0], outShape), "Error setting shape"); in addMul()
104 Shape outShape = model->getShape(outs[0]); in pool() local
107 stride_width, stride_height, filter_width, filter_height, &outShape), in pool()
109 HEXAGON_SOFT_ASSERT(model->setShape(outs[0], outShape), "Error setting shape"); in pool()
144 Shape outShape = model->getShape(outs[0]); in concatenation() local
145 HEXAGON_SOFT_ASSERT(concatenationPrepare(inShapes, axis, &outShape), "Error getting shape"); in concatenation()
146 HEXAGON_SOFT_ASSERT(model->setShape(outs[0], outShape), "Error setting shape"); in concatenation()
198 Shape outShape = model->getShape(outs[0]); in conv_2d() local
201 padding_bottom, stride_width, stride_height, &outShape), in conv_2d()
203 HEXAGON_SOFT_ASSERT(model->setShape(outs[0], outShape), "Error setting shape"); in conv_2d()
259 Shape outShape = model->getShape(outs[0]); in depthwise_conv_2d() local
262 padding_top, padding_bottom, stride_width, stride_height, &outShape), in depthwise_conv_2d()
264 HEXAGON_SOFT_ASSERT(model->setShape(outs[0], outShape), "Error setting shape"); in depthwise_conv_2d()
280 Shape outShape = model->getShape(outs[0]); in dequantize() local
282 HEXAGON_SOFT_ASSERT(dequantizePrepare(inputShape, &outShape), "Error getting shape"); in dequantize()
283 HEXAGON_SOFT_ASSERT(model->setShape(outs[0], outShape), "Error setting shape"); in dequantize()
298 Shape outShape = model->getShape(outs[0]); in fully_connected() local
299 HEXAGON_SOFT_ASSERT(fullyConnectedPrepare(inputShape, weightsShape, biasShape, &outShape), in fully_connected()
301 HEXAGON_SOFT_ASSERT(model->setShape(outs[0], outShape), "Error setting shape"); in fully_connected()
317 Shape outShape = model->getShape(outs[0]); in local_response_normalization() local
318 HEXAGON_SOFT_ASSERT(genericNormalizationPrepare(inShape, &outShape), "Error getting shape"); in local_response_normalization()
319 HEXAGON_SOFT_ASSERT(model->setShape(outs[0], outShape), "Error setting shape"); in local_response_normalization()
332 Shape outShape = model->getShape(outs[0]); in activation() local
333 HEXAGON_SOFT_ASSERT(genericActivationPrepare(inShape, &outShape), "Error getting shape"); in activation()
334 HEXAGON_SOFT_ASSERT(model->setShape(outs[0], outShape), "Error setting shape"); in activation()
380 Shape outShape = model->getShape(outs[0]); in reshape() local
383 HEXAGON_SOFT_ASSERT(reshapePrepare(inShape, targetShapePtr, targetShapeNumElem, &outShape), in reshape()
385 HEXAGON_SOFT_ASSERT(model->setShape(outs[0], outShape), "Error setting shape"); in reshape()
402 Shape outShape = model->getShape(outs[0]); in resize_bilinear() local
403 HEXAGON_SOFT_ASSERT(resizeBilinearPrepare(inShape, width, height, &outShape), in resize_bilinear()
405 HEXAGON_SOFT_ASSERT(model->setShape(outs[0], outShape), "Error setting shape"); in resize_bilinear()