()
| 22 | |
| 23 | |
| 24 | def rotate_90_2d(): |
| 25 | t = torch.eye(3) |
| 26 | t[:, 0] = torch.FloatTensor([0, -1, 0]) |
| 27 | t[:, 1] = torch.FloatTensor([1, 0, 0]) |
| 28 | return t |
| 29 | |
| 30 | |
| 31 | RESAMPLE_FUNCTION_CASES = [ |
no outgoing calls
no test coverage detected
searching dependent graphs…