(*computation_args)
| 82 | |
| 83 | @function.defun(autograph=autograph) |
| 84 | def computation(*computation_args): |
| 85 | return fn(*computation_args) |
| 86 | |
| 87 | computation = computation.get_concrete_function( |
| 88 | *[tensor_spec.TensorSpec(dtype=x.dtype, shape=x.shape, name=str(i)) |