Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/compiler/mlir/lite/transforms/
Dwhile_loop_outline.cc120 for (auto extern_value : region_extern_values) { in OutlineWhile() local
121 if (!matchPattern(extern_value, m_Constant())) { in OutlineWhile()
122 extern_values.insert(extern_value); in OutlineWhile()
128 auto const_value = const_builder.clone(*extern_value.getDefiningOp()); in OutlineWhile()
129 replaceAllUsesInRegionWith(extern_value, const_value->getResult(0), in OutlineWhile()
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/transforms/
Dregion_control_flow_to_functional.cc84 for (auto extern_value : region_extern_values) { in CollectExternValues() local
85 if (!matchPattern(extern_value, m_Constant())) { in CollectExternValues()
86 extern_values.insert(extern_value); in CollectExternValues()
91 auto const_value = const_builder.clone(*extern_value.getDefiningOp()); in CollectExternValues()
92 replaceAllUsesInRegionWith(extern_value, const_value->getResult(0), in CollectExternValues()