pytorch - 💡(How to fix) Fix DISABLED test_dynamic_lstm_cpp_serdes (__main__.CppSerdesTestExport) [1 comments, 1 participants]

Official PRs (…)
ON THIS PAGE

Recommended Tools

×6

Utilities matched from this issue’s tags and category — try them while you read without losing context.

GitHub issue graph ai analysis

Paste a GitHub issue URL. We fetch that issue, discover linked issues from bodies/comments/timeline, collect linked pull requests, and produce a structured English report.

The report is written in English Markdown for sharing and archival.

Helpful · Quick feedback

Loading…
GitHub stats
pytorch/pytorch#177002Fetched 2026-04-08 00:23:05
View on GitHub
Comments
1
Participants
1
Timeline
35
Reactions
0
Participants
Timeline (top)
mentioned ×15subscribed ×15labeled ×4commented ×1

Error Message

Traceback (most recent call last): File "/var/lib/jenkins/workspace/test/export/test_export.py", line 1334, in test_dynamic_lstm self.assertEqual(eager_out_gru, ep_out_gru) File "/opt/conda/envs/py_3.10/lib/python3.10/site-packages/torch/_dynamo/test_case.py", line 113, in assertEqual return super().assertEqual(x, y, *args, **kwargs) File "/opt/conda/envs/py_3.10/lib/python3.10/site-packages/torch/testing/_internal/common_utils.py", line 4365, in assertEqual raise error_metas.pop()[0].to_error( # type: ignore[index] AssertionError: Tensor-likes are not close!

Mismatched elements: 638 / 262144 (0.2%) Greatest absolute difference: 3.522634506225586e-05 at index (0, 12, 300) (up to 1e-05 allowed) Greatest relative difference: 0.00430322764441371 at index (1, 15, 482) (up to 1.3e-06 allowed)

To execute this test, run the following from the base repo dir: PYTORCH_TEST_WITH_ASAN=1 PYTORCH_TEST_WITH_UBSAN=1 python test/export/test_cpp_serdes.py CppSerdesTestExport.test_dynamic_lstm_cpp_serdes

This message can be suppressed by setting PYTORCH_PRINT_REPRO_ON_FAILURE=0

Root Cause

This test was disabled because it is failing in CI. See recent examples and the most recent trunk workflow logs.

Code Example

Traceback (most recent call last):
  File "/var/lib/jenkins/workspace/test/export/test_export.py", line 1334, in test_dynamic_lstm
    self.assertEqual(eager_out_gru, ep_out_gru)
  File "/opt/conda/envs/py_3.10/lib/python3.10/site-packages/torch/_dynamo/test_case.py", line 113, in assertEqual
    return super().assertEqual(x, y, *args, **kwargs)
  File "/opt/conda/envs/py_3.10/lib/python3.10/site-packages/torch/testing/_internal/common_utils.py", line 4365, in assertEqual
    raise error_metas.pop()[0].to_error(  # type: ignore[index]
AssertionError: Tensor-likes are not close!

Mismatched elements: 638 / 262144 (0.2%)
Greatest absolute difference: 3.522634506225586e-05 at index (0, 12, 300) (up to 1e-05 allowed)
Greatest relative difference: 0.00430322764441371 at index (1, 15, 482) (up to 1.3e-06 allowed)

To execute this test, run the following from the base repo dir:
    PYTORCH_TEST_WITH_ASAN=1 PYTORCH_TEST_WITH_UBSAN=1 python test/export/test_cpp_serdes.py CppSerdesTestExport.test_dynamic_lstm_cpp_serdes

This message can be suppressed by setting PYTORCH_PRINT_REPRO_ON_FAILURE=0
RAW_BUFFERClick to expand / collapse

Platforms: asan, linux

This test was disabled because it is failing in CI. See recent examples and the most recent trunk workflow logs.

Over the past 6 hours, it has been determined flaky in 3 workflow(s) with 3 failures and 3 successes.

Debugging instructions (after clicking on the recent samples link): DO NOT ASSUME THINGS ARE OKAY IF THE CI IS GREEN. We now shield flaky tests from developers so CI will thus be green but it will be harder to parse the logs. To find relevant log snippets:

  1. Click on the workflow logs linked above
  2. Click on the Test step of the job so that it is expanded. Otherwise, the grepping will not work.
  3. Grep for test_dynamic_lstm_cpp_serdes
  4. There should be several instances run (as flaky tests are rerun in CI) from which you can study the logs.
<details><summary>Sample error message</summary>
Traceback (most recent call last):
  File "/var/lib/jenkins/workspace/test/export/test_export.py", line 1334, in test_dynamic_lstm
    self.assertEqual(eager_out_gru, ep_out_gru)
  File "/opt/conda/envs/py_3.10/lib/python3.10/site-packages/torch/_dynamo/test_case.py", line 113, in assertEqual
    return super().assertEqual(x, y, *args, **kwargs)
  File "/opt/conda/envs/py_3.10/lib/python3.10/site-packages/torch/testing/_internal/common_utils.py", line 4365, in assertEqual
    raise error_metas.pop()[0].to_error(  # type: ignore[index]
AssertionError: Tensor-likes are not close!

Mismatched elements: 638 / 262144 (0.2%)
Greatest absolute difference: 3.522634506225586e-05 at index (0, 12, 300) (up to 1e-05 allowed)
Greatest relative difference: 0.00430322764441371 at index (1, 15, 482) (up to 1.3e-06 allowed)

To execute this test, run the following from the base repo dir:
    PYTORCH_TEST_WITH_ASAN=1 PYTORCH_TEST_WITH_UBSAN=1 python test/export/test_cpp_serdes.py CppSerdesTestExport.test_dynamic_lstm_cpp_serdes

This message can be suppressed by setting PYTORCH_PRINT_REPRO_ON_FAILURE=0
</details>

Test file path: export/test_cpp_serdes.py

For all disabled tests (by GitHub issue), see https://hud.pytorch.org/disabled.

cc @chauhang @penguinwu @avikchaudhuri @zhxchen17 @tugsbayasgalan @angelayi @suo @ydwu4

extent analysis

Fix Plan

Fix: Increase Tolerance for Floating Point Comparisons

The issue is caused by a flaky test due to floating point comparisons being too strict. We can increase the tolerance for these comparisons to make the test more robust.

Step-by-Step Solution:

  1. Update test_export.py: In the test_dynamic_lstm method, update the assertEqual call to use a higher tolerance for floating point comparisons.
import torch.testing

# ...

def test_dynamic_lstm(self):
    # ...
    torch.testing.assert_close(eager_out_gru, ep_out_gru, atol=1e-6, rtol=1e-3)
    # ...
  1. Update test_cpp_serdes.py: In the CppSerdesTestExport class, update the test_dynamic_lstm_cpp_serdes method to use the same tolerance.
import torch.testing

# ...

class CppSerdesTestExport(unittest.TestCase):
    # ...

    def test_dynamic_lstm_cpp_serdes(self):
        # ...
        torch.testing.assert_close(eager_out_gru, ep_out_gru, atol=1e-6, rtol=1e-3)
        # ...

Verification:

  1. Run the test again in CI to verify that it passes.
  2. Check the logs to ensure that the test is not flaky anymore.

Extra Tips:

  • When working with floating point numbers, it's often better to use torch.testing.assert_close instead of assertEqual to account for small differences due to rounding errors.
  • You can adjust the atol and rtol parameters to find the right balance between accuracy and robustness for your specific use case.

Vote matrix · Quick signals

Works
Did the solution work? Tap to confirm.
Easy Fix
Was it a quick fix?
Time Saver
Did it save you time?
Blocking
Was it severely blocking?
Common Issue
Are others likely hitting this too?
Flaky / Intermittent
Is it intermittent?
Verified / Reproducible
Can you reproduce it reliably?
Loading…

Still need to ship something?

×6

Another batch ranked right after the header list — different links, same matching logic.

Back to top recommendations

TRENDING