Lines Matching refs:updateOutputShapes
721 StepExecutor::UpdateOutputShapes updateOutputShapes = {}; in computeInternal() local
722 if (!executor->updateOutputShapes(stepN, stepOutputShapes, &outputShapes, in computeInternal()
723 &updateOutputShapes)) { in computeInternal()
729 if (updateOutputShapes.zeroSizedInput) { in computeInternal()
740 VLOG(EXECUTION) << "OUTPUT_INSUFFICIENT_SIZE: " << toString(updateOutputShapes); in computeInternal()
741 if (updateOutputShapes.mainOutputInsufficient || in computeInternal()
742 !updateOutputShapes.updatedDynamicTemporary) { in computeInternal()
768 if (updateOutputShapes.zeroSizedInput) { in computeInternal()
779 !fallbackExecutor->updateOutputShapes(fallbackN, fallbackOutputShapes, in computeInternal()
1121 bool ExecutionBuilder::updateOutputShapes(ErrorStatus status, in updateOutputShapes() function in android::nn::ExecutionBuilder
1154 if (!updateOutputShapes(status, outputShapes) || !updateMemories()) { in finishComputation()
1184 std::string toString(StepExecutor::UpdateOutputShapes updateOutputShapes) { in toString() argument
1186 std::to_string(updateOutputShapes.updatedDynamicTemporary) + in toString()
1188 std::to_string(updateOutputShapes.mainOutputInsufficient) + "}"; in toString()
1191 bool StepExecutor::updateOutputShapes(int executionResultCode, const std::vector<OutputShape>& from, in updateOutputShapes() function in android::nn::StepExecutor