From 38d656041b47a35e9d8d0294f5498ac68765c281 Mon Sep 17 00:00:00 2001 From: Yih-Dar <2521628+ydshieh@users.noreply.github.com> Date: Fri, 5 Aug 2022 19:27:19 +0200 Subject: [PATCH] disable Onnx test for google/long-t5-tglobal-base (#18454) Co-authored-by: ydshieh --- tests/onnx/test_onnx_v2.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/onnx/test_onnx_v2.py b/tests/onnx/test_onnx_v2.py index c15910734f..cfc58dd335 100644 --- a/tests/onnx/test_onnx_v2.py +++ b/tests/onnx/test_onnx_v2.py @@ -228,7 +228,9 @@ PYTORCH_EXPORT_SEQ2SEQ_WITH_PAST_MODELS = { ("blenderbot", "facebook/blenderbot-400M-distill"), ("bigbird-pegasus", "google/bigbird-pegasus-large-arxiv"), ("longt5", "google/long-t5-local-base"), - ("longt5", "google/long-t5-tglobal-base"), + # Disable for now as it causes fatal error `Floating point exception (core dumped)` and the subsequential tests are + # not run. + # ("longt5", "google/long-t5-tglobal-base"), } # TODO(lewtun): Include the same model types in `PYTORCH_EXPORT_MODELS` once TensorFlow has parity with the PyTorch model implementations.