Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/compiler/mlir/tfr/
Ddefine_op_template.py27 from tensorflow.compiler.mlir.tfr.python.tfr_gen import tfr_gen_from_module
54 generated_code = tfr_gen_from_module(sys.modules[__name__], '_composite_')
/external/tensorflow/tensorflow/compiler/mlir/tfr/examples/customization/
Dops_defs.py28 from tensorflow.compiler.mlir.tfr.python.tfr_gen import tfr_gen_from_module
60 generated_code = tfr_gen_from_module(sys.modules[__name__], '_override_')
/external/tensorflow/tensorflow/compiler/mlir/tfr/examples/pad/
Dops_defs.py30 from tensorflow.compiler.mlir.tfr.python.tfr_gen import tfr_gen_from_module
158 generated_code = tfr_gen_from_module(sys.modules[__name__], '_composite_')
/external/tensorflow/tensorflow/compiler/mlir/tfr/examples/mnist/
Dops_defs.py30 from tensorflow.compiler.mlir.tfr.python.tfr_gen import tfr_gen_from_module
207 generated_code = tfr_gen_from_module(sys.modules[__name__], '_composite_',)
/external/tensorflow/tensorflow/compiler/mlir/tfr/python/
Dtfr_gen_test.py29 from tensorflow.compiler.mlir.tfr.python.tfr_gen import tfr_gen_from_module as tfr_gen
Dtfr_gen.py1423 def tfr_gen_from_module(source, method_prefix=None, op_libraries=None): function