(self, *args: Any, **kwargs: Any)
| 102 | self.tensor = tensor |
| 103 | |
| 104 | def to(self, *args: Any, **kwargs: Any) -> "BitMasks": |
| 105 | return BitMasks(self.tensor.to(*args, **kwargs)) |
| 106 | |
| 107 | @property |
| 108 | def device(self) -> torch.device: |
no test coverage detected