(self, inps: Iterable[Tensor], axis: int = 0)
| 14 | self.output_dtype = dtype |
| 15 | |
| 16 | def forward(self, inps: Iterable[Tensor], axis: int = 0): |
| 17 | new_inps = tuple(x.astype(self.output_dtype) for x in inps) |
| 18 | return F.concat(new_inps, axis) |
| 19 | |
| 20 | @classmethod |
| 21 | def from_qat_module(cls, qat_module: QAT.Concat): |