(self)
| 608 | return UnquantizedTensor(self.ndarray.astype(dtype)) |
| 609 | |
| 610 | def to_ggml(self) -> UnquantizedTensor: |
| 611 | return self |
| 612 | |
| 613 | def permute_part(self, n_part: int, n_head: int, n_head_kv: int) -> UnquantizedTensor: |
| 614 | r = self.ndarray.shape[0] // 3 |
nothing calls this directly
no outgoing calls
no test coverage detected