| 9 | |
| 10 | @runtime_checkable |
| 11 | class ConversionFunction(Protocol): |
| 12 | def __call__( |
| 13 | self, |
| 14 | xy: Float[Tensor, "*batch 2"], |
| 15 | ) -> Float[Tensor, "*batch 2"]: |
| 16 | pass |
| 17 | |
| 18 | |
| 19 | def generate_conversions( |
nothing calls this directly
no outgoing calls
no test coverage detected