Searched refs:python_func (Results 1 – 4 of 4) sorted by relevance
62 def should_bind_function(python_func: PythonSignatureNativeFunctionPair) -> bool:64 should_generate_py_binding(python_func.function)65 and not python_func.function.python_module66 and Variant.function in python_func.function.variants69 def should_bind_method(python_func: PythonSignatureNativeFunctionPair) -> bool:71 should_generate_py_binding(python_func.function)72 and not python_func.function.python_module73 and Variant.method in python_func.function.variants
1091 python_func, argument1228 _, 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)
100 func_outputs = python_func(*func_args, **func_kwargs)
625 python_func=_backprop_function,