Home
last modified time | relevance | path

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

/aosp_15_r20/external/pytorch/tools/pyi/
H A Dgen_pyi.py62 def should_bind_function(python_func: PythonSignatureNativeFunctionPair) -> bool:
64 should_generate_py_binding(python_func.function)
65 and not python_func.function.python_module
66 and Variant.function in python_func.function.variants
69 def should_bind_method(python_func: PythonSignatureNativeFunctionPair) -> bool:
71 should_generate_py_binding(python_func.function)
72 and not python_func.function.python_module
73 and Variant.method in python_func.function.variants
/aosp_15_r20/external/tensorflow/tensorflow/python/framework/
H A Dfunc_graph.py1091 python_func, argument
1228 _, original_func = tf_decorator.unwrap(python_func)
1253 python_func = tf_decorator.rewrap(python_func, original_func,
1257 _, original_func = tf_decorator.unwrap(python_func)
1259 func_outputs = python_func(*func_args, **func_kwargs)
/aosp_15_r20/external/tensorflow/tensorflow/python/autograph/g3doc/reference/
H A Derror_handling.md100 func_outputs = python_func(*func_args, **func_kwargs)
/aosp_15_r20/external/tensorflow/tensorflow/python/eager/
H A Dfunction.py625 python_func=_backprop_function,