xref: /aosp_15_r20/external/pytorch/test/expect/TestJit.test_pretty_printer-if_one.expect (revision da0073e96a02ea20f0ac840b70461e3646d07c45)
1def if_one(a: Tensor,
2    b: Tensor) -> Tensor:
3  if bool(torch.lt(a, b)):
4    c = a
5  else:
6    c = b
7  return c
8