(fn)
| 31 | return _decorator_helper(fn, utils.maybe_half, wrap_fn) |
| 32 | |
| 33 | def float_function(fn): |
| 34 | wrap_fn = functools.partial(wrap.make_cast_wrapper, try_caching=False) |
| 35 | return _decorator_helper(fn, utils.maybe_float, wrap_fn) |
| 36 | |
| 37 | # Registry form |
| 38 | def register_half_function(module, name): |
nothing calls this directly
no test coverage detected