Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/python/
Dpywrap_mlir.py27 def import_graphdef(graphdef, pass_pipeline, show_debug_info): argument
30 show_debug_info)
33 def import_function(concrete_function, pass_pipeline, show_debug_info): argument
38 pass_pipeline.encode('utf-8'), show_debug_info)
42 show_debug_info): argument
45 str(exported_names).encode('utf-8'), show_debug_info)
50 show_debug_info): argument
53 str(tags).encode('utf-8'), upgrade_legacy, show_debug_info)
58 show_debug_info): argument
62 show_debug_info)
[all …]
Dmlir_wrapper.cc27 bool show_debug_info) { in PYBIND11_MODULE() argument
31 graphdef, pass_pipeline, show_debug_info, status.get()); in PYBIND11_MODULE()
38 const std::string &pass_pipeline, bool show_debug_info) { in PYBIND11_MODULE() argument
45 functiondef, pass_pipeline, show_debug_info, ctxt, status.get()); in PYBIND11_MODULE()
52 const std::string &exported_names, bool show_debug_info) { in PYBIND11_MODULE() argument
56 saved_model_path, exported_names, show_debug_info, status.get()); in PYBIND11_MODULE()
63 bool upgrade_legacy, bool show_debug_info) { in PYBIND11_MODULE() argument
68 saved_model_path, tags, upgrade_legacy, show_debug_info, in PYBIND11_MODULE()
76 bool lift_variables, bool upgrade_legacy, bool show_debug_info) { in PYBIND11_MODULE() argument
82 show_debug_info, status.get()); in PYBIND11_MODULE()
[all …]
/external/tensorflow/tensorflow/compiler/mlir/python/
Dmlir.cc52 bool show_debug_info, TF_Status *status) { in RunPassPipelineOnModule() argument
69 return MlirModuleToString(module, show_debug_info); in RunPassPipelineOnModule()
76 bool show_debug_info, TF_Status *status) { in ImportGraphDef() argument
92 return RunPassPipelineOnModule(module->get(), pass_pipeline, show_debug_info, in ImportGraphDef()
98 bool show_debug_info, TFE_Context *tfe_context, in ImportFunction() argument
132 return RunPassPipelineOnModule(module->get(), pass_pipeline, show_debug_info, in ImportFunction()
138 bool show_debug_info, TF_Status *status) { in ExperimentalConvertSavedModelToMlir() argument
161 return MlirModuleToString(*module_or.ConsumeValueOrDie(), show_debug_info); in ExperimentalConvertSavedModelToMlir()
166 bool upgrade_legacy, bool show_debug_info, TF_Status *status) { in ExperimentalConvertSavedModelV1ToMlirLite() argument
182 return MlirModuleToString(*module_or.ValueOrDie(), show_debug_info); in ExperimentalConvertSavedModelV1ToMlirLite()
[all …]
Dmlir.h35 bool show_debug_info, TF_Status *status);
44 bool show_debug_info, TFE_Context *context,
58 bool show_debug_info, TF_Status *status);
73 bool upgrade_legacy, bool show_debug_info, TF_Status *status);
87 bool lift_variables, bool upgrade_legacy, bool show_debug_info,
92 bool show_debug_info,
/external/tensorflow/tensorflow/python/compiler/mlir/
Dmlir.py28 show_debug_info=False): argument
50 return pywrap_mlir.import_graphdef(graph_def, pass_pipeline, show_debug_info)
56 show_debug_info=False): argument
95 show_debug_info)
Dmlir_test.py56 mlir_module = mlir.convert_function(concrete_function, show_debug_info=True)
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/
Dcommon_v1.py51 show_debug_info=False, argument
110 upgrade_legacy, show_debug_info)
116 show_debug_info)
120 lift_variables, upgrade_legacy, show_debug_info)
124 show_debug_info)
Dcommon.py43 def do_test(create_module_fn, exported_names=None, show_debug_info=False): argument
83 save_options = tf.saved_model.SaveOptions(save_debug_info=show_debug_info)
88 save_model_path, ','.join(exported_names), show_debug_info)
93 show_debug_info)
Ddebug_info.py42 common.do_test(TestModule, show_debug_info=True)
/external/tensorflow/tensorflow/tools/api/golden/v2/
Dtensorflow.mlir.experimental.pbtxt5 …argspec: "args=[\'concrete_function\', \'pass_pipeline\', \'show_debug_info\'], varargs=None, keyw…
9 …argspec: "args=[\'graph_def\', \'pass_pipeline\', \'show_debug_info\'], varargs=None, keywords=Non…
/external/tensorflow/tensorflow/tools/api/golden/v1/
Dtensorflow.mlir.experimental.pbtxt5 …argspec: "args=[\'concrete_function\', \'pass_pipeline\', \'show_debug_info\'], varargs=None, keyw…
9 …argspec: "args=[\'graph_def\', \'pass_pipeline\', \'show_debug_info\'], varargs=None, keywords=Non…
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/translate/
Dimport_model.h137 std::string MlirModuleToString(mlir::ModuleOp m, bool show_debug_info = false);
Dimport_model.cc3956 std::string MlirModuleToString(mlir::ModuleOp module, bool show_debug_info) { in MlirModuleToString() argument
3958 if (show_debug_info) flags.enableDebugInfo(); in MlirModuleToString()
/external/tensorflow/
DRELEASE.md147 * Adding show_debug_info to mlir.convert_graph_def and