ryzendigo
bc29c4ba71
fix: off-by-one error in GpuSelector.get_gpu_arg ( #22464 )
...
gpu <= len(self._valid_gpus) should be gpu < len(self._valid_gpus).
The list is zero-indexed, so requesting gpu index equal to the list
length causes an IndexError. For example, with 2 valid GPUs (indices
0 and 1), requesting gpu=2 passes the check (2 <= 2) but
self._valid_gpus[2] is out of bounds.
2026-03-16 06:42:03 -06:00
..
2026-03-14 14:31:33 -06:00
2026-03-04 15:53:20 -07:00
2026-03-04 10:07:34 -06:00
2026-03-08 10:55:00 -05:00
2026-03-10 07:35:00 -06:00
2026-03-11 06:49:28 -06:00
2026-03-08 14:14:18 -06:00
2026-03-04 10:07:34 -06:00
2026-03-15 07:26:36 -05:00
2026-03-05 17:53:48 -06:00
2026-03-05 18:20:03 -06:00
2025-11-25 10:25:07 -07:00
2026-03-06 13:45:39 -07:00
2026-02-28 07:04:43 -07:00
2026-03-05 17:53:48 -06:00
2026-03-04 10:07:34 -06:00
2026-03-04 10:07:34 -06:00
2026-03-06 13:45:39 -07:00
2026-03-04 10:07:34 -06:00
2026-03-12 07:16:06 -06:00
2026-03-05 17:53:48 -06:00
2026-03-04 10:07:34 -06:00
2026-03-08 16:23:48 -06:00
2026-03-16 06:42:03 -06:00
2026-02-03 13:29:52 -06:00
2026-03-05 17:53:48 -06:00
2026-03-04 10:07:34 -06:00
2026-03-04 10:07:34 -06:00
2026-02-26 21:27:56 -07:00
2026-03-06 13:45:39 -07:00