(x1, x2)
| 42 | import torch |
| 43 | |
| 44 | def foo1(x1, x2): |
| 45 | a = torch.neg(x1) |
| 46 | b = torch.maximum(x2, a) |
| 47 | y = torch.cat([b], dim=0) |
| 48 | return y |
| 49 | |
| 50 | x1 = torch.randint(256, (1, 8), dtype=torch.uint8) |
| 51 | x2 = torch.randint(256, (8390, 8), dtype=torch.uint8) |
nothing calls this directly
no outgoing calls
no test coverage detected