Files
blakeblackshear.frigate/frigate
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-04 15:53:20 -07:00
2026-03-04 10:07:34 -06:00
2026-03-04 10:07:34 -06:00
2026-03-15 07:26:36 -05:00
2026-02-28 07:04:43 -07:00
2026-03-04 10:07:34 -06:00
2026-03-04 10:07:34 -06:00
2026-03-04 10:07:34 -06:00
2026-03-04 10:07:34 -06:00
2026-02-03 13:29:52 -06:00
2026-03-04 10:07:34 -06:00
2026-03-04 10:07:34 -06:00