From 206d1f46359076fd37ca7d55a290329c009b7982 Mon Sep 17 00:00:00 2001 From: Scott Schneider Date: Wed, 15 Jan 2025 13:13:42 -0800 Subject: [PATCH] Remove comment --- test/decoders/test_video_decoder.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/test/decoders/test_video_decoder.py b/test/decoders/test_video_decoder.py index dea38bab..8b15c1a3 100644 --- a/test/decoders/test_video_decoder.py +++ b/test/decoders/test_video_decoder.py @@ -446,9 +446,6 @@ def test_get_frame_played_at(self, device): @pytest.mark.parametrize("device", cpu_and_cuda()) def test_get_frame_played_at_h265(self, device): # Non-regression test for https://github.com/pytorch/torchcodec/issues/179 - # We don't parametrize with CUDA because the current GPUs on CI do not - # support x265: - # https://github.com/pytorch/torchcodec/pull/350#issuecomment-2465011730 decoder = VideoDecoder(H265_VIDEO.path, device=device) ref_frame6 = H265_VIDEO.get_frame_data_by_index(5) assert_frames_equal(ref_frame6, decoder.get_frame_played_at(0.5).data)