From d7166c2ce10c336786b05eae80193af68826b901 Mon Sep 17 00:00:00 2001 From: ydshieh Date: Thu, 9 Mar 2023 18:19:44 +0100 Subject: [PATCH 1/2] skip 3 tests --- tests/models/whisper/test_modeling_whisper.py | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/tests/models/whisper/test_modeling_whisper.py b/tests/models/whisper/test_modeling_whisper.py index 6fa50a7f0819..d64b7b0795b6 100644 --- a/tests/models/whisper/test_modeling_whisper.py +++ b/tests/models/whisper/test_modeling_whisper.py @@ -1525,6 +1525,17 @@ def test_forward_signature(self): expected_arg_names = ["input_features", "head_mask", "encoder_outputs"] self.assertListEqual(arg_names[: len(expected_arg_names)], expected_arg_names) + @unittest.skip(reason="Some undefined behavior encountered with tiny versions of this model. Skip for now.") + def test_cpu_offload(self): + pass + + @unittest.skip(reason="Some undefined behavior encountered with tiny versions of this model. Skip for now.") + def test_disk_offload(self): + pass + @unittest.skip(reason="Some undefined behavior encountered with tiny versions of this model. Skip for now.") + def test_model_parallelism(self): + pass + # input embeds is meaningless for an encoder-only acoustic model def test_inputs_embeds(self): pass From f22b21d49e8e83ffcbda6ea96f44dd40ebfec0e4 Mon Sep 17 00:00:00 2001 From: ydshieh Date: Thu, 9 Mar 2023 18:27:06 +0100 Subject: [PATCH 2/2] skip 3 tests --- tests/models/whisper/test_modeling_whisper.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/models/whisper/test_modeling_whisper.py b/tests/models/whisper/test_modeling_whisper.py index d64b7b0795b6..d4b252398f28 100644 --- a/tests/models/whisper/test_modeling_whisper.py +++ b/tests/models/whisper/test_modeling_whisper.py @@ -1532,6 +1532,7 @@ def test_cpu_offload(self): @unittest.skip(reason="Some undefined behavior encountered with tiny versions of this model. Skip for now.") def test_disk_offload(self): pass + @unittest.skip(reason="Some undefined behavior encountered with tiny versions of this model. Skip for now.") def test_model_parallelism(self): pass