Home
last modified time | relevance | path

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

/frameworks/ml/nn/runtime/test/
DTestPartitioningRandom.cpp793 std::map<uint32_t, uint32_t> deadOperands; in TEST_P() local
933 decltype(deadOperands.begin()) deadOperandI; in TEST_P()
934 if (!deadOperands.empty() && (randFrac() < 0.5)) { in TEST_P()
935 deadOperandI = deadOperands.begin(); in TEST_P()
936 std::advance(deadOperandI, randUInt(deadOperands.size())); in TEST_P()
944 deadOperandI = deadOperands.find(operandIndex); in TEST_P()
945 CHECK(deadOperandI == deadOperands.end() || in TEST_P()
948 if (deadOperandI != deadOperands.end()) { in TEST_P()
950 deadOperands.erase(deadOperandI); in TEST_P()
1018 [&deadOperands, operationIndex](uint32_t operandIndex) { in TEST_P()
[all …]