(func, inp, Tout, name=None)
| 518 | |
| 519 | @tf_export("numpy_function") |
| 520 | def numpy_function(func, inp, Tout, name=None): |
| 521 | return py_func_common(func, inp, Tout, stateful=True, name=name) |
| 522 | |
| 523 | |
| 524 | numpy_function.__doc__ = py_func_common.__doc__.replace("py_func", |
nothing calls this directly
no test coverage detected