(self, c)
| 108 | self.quantize_interface = quantize_interface |
| 109 | |
| 110 | def encode(self, c): |
| 111 | c = c[:,None] |
| 112 | if self.quantize_interface: |
| 113 | return c, None, [None, None, c.long()] |
| 114 | return c |
| 115 | |
| 116 | |
| 117 | class SOSProvider(AbstractEncoder): |
nothing calls this directly
no outgoing calls
no test coverage detected