Home
last modified time | relevance | path

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

/frameworks/ml/nn/runtime/test/
DTestPartitioning.cpp612 bool compare(const ModelBuilder* modelA, const ModelBuilder* modelB) { in compare() argument
614 ::dump("compare(A)", modelA); in compare()
618 if (modelA->operandCount() != modelB->operandCount() || in compare()
619 modelA->operationCount() != modelB->operationCount() || in compare()
620 modelA->inputCount() != modelB->inputCount() || in compare()
621 modelA->outputCount() != modelB->outputCount()) { in compare()
627 buildDefinitionMap(modelA, &defsA); in compare()
642 for (uint32_t i = 0, e = modelA->outputCount(); i < e; i++) { in compare()
643 uint32_t outputA = modelA->getOutputOperandIndex(i); in compare()
645 if (!compare(modelA->getOperand(outputA), modelB->getOperand(outputB))) { in compare()
[all …]