()
| 923 | } |
| 924 | |
| 925 | set_row_limits() { |
| 926 | const step = Math.floor(this.num_rows / this.row_groups); |
| 927 | this.row_limits = []; |
| 928 | for (let iter = this.row_groups - 1; iter > -1; iter--) { |
| 929 | this.row_limits.unshift(iter * step); |
| 930 | } |
| 931 | this.row_limits[this.row_groups] = this.num_rows; |
| 932 | } |
| 933 | |
| 934 | get_end_points( |
| 935 | group_iter, |