Home
last modified time | relevance | path

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

/packages/modules/NeuralNetworks/runtime/test/
DTestPartitioningRandom.cpp725 std::map<uint32_t, uint32_t> deadOperands; in TEST_P() local
866 decltype(deadOperands.begin()) deadOperandI; in TEST_P()
867 if (!deadOperands.empty() && (randFrac() < 0.5)) { in TEST_P()
868 deadOperandI = deadOperands.begin(); in TEST_P()
869 std::advance(deadOperandI, randUInt(deadOperands.size())); in TEST_P()
877 deadOperandI = deadOperands.find(operandIndex); in TEST_P()
878 CHECK(deadOperandI == deadOperands.end() || in TEST_P()
881 if (deadOperandI != deadOperands.end()) { in TEST_P()
883 deadOperands.erase(deadOperandI); in TEST_P()
957 [&deadOperands, operationIndex](uint32_t operandIndex) { in TEST_P()
[all …]