(self, n_part: int, n_head: int, n_head_kv: int)
| 490 | return self |
| 491 | |
| 492 | def permute_part(self, n_part: int, n_head: int, n_head_kv: int) -> UnquantizedTensor: |
| 493 | r = self.ndarray.shape[0] // 3 |
| 494 | return UnquantizedTensor(permute(self.ndarray[r * n_part : r * n_part + r, ...], n_head, n_head_kv)) |
| 495 | |
| 496 | def part(self, n_part: int) -> UnquantizedTensor: |
| 497 | r = self.ndarray.shape[0] // 3 |
nothing calls this directly
no test coverage detected