(self, a, v, side="left")
| 2111 | return indices |
| 2112 | |
| 2113 | def searchsorted(self, a, v, side="left"): |
| 2114 | right = side != "left" |
| 2115 | return torch.searchsorted(a, v, right=right) |
| 2116 | |
| 2117 | def flip(self, a, axis=None): |
| 2118 | if axis is None: |
nothing calls this directly
no test coverage detected