Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/lite/toco/graph_transformations/
Dresolve_batch_normalization.cc32 auto bn_it = model->operators.begin() + op_index; in Run() local
33 if (bn_it->get()->type != OperatorType::kBatchNormalization) { in Run()
37 static_cast<const BatchNormalizationOperator*>(bn_it->get()); in Run()
85 auto add_it = model->operators.emplace(bn_it, add_op); in Run()
91 bn_it = add_it + 1; in Run()
92 DCHECK_EQ(bn_it->get(), bn_op); in Run()