Home
last modified time | relevance | path

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

/aosp12/packages/modules/NeuralNetworks/runtime/test/
H A 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()
878 CHECK(deadOperandI == deadOperands.end() || in TEST_P()
881 if (deadOperandI != deadOperands.end()) { in TEST_P()
883 deadOperands.erase(deadOperandI); in TEST_P()
989 const auto deadOperandI = deadOperands.find(operandIndex); in TEST_P()
990 if (deadOperandI != deadOperands.end()) { in TEST_P()
1009 if (deadOperandI != deadOperands.end()) { in TEST_P()
[all …]