Skip to content

Fix flaky TestVmap.test_vmap_masked_scatter#3421

Merged
zcbenz merged 1 commit intoml-explore:mainfrom
zcbenz:fix-flaky-masked-scatter
Apr 20, 2026
Merged

Fix flaky TestVmap.test_vmap_masked_scatter#3421
zcbenz merged 1 commit intoml-explore:mainfrom
zcbenz:fix-flaky-masked-scatter

Conversation

@zcbenz
Copy link
Copy Markdown
Collaborator

@zcbenz zcbenz commented Apr 17, 2026

This test is flaky in CI and luckily I can reproduce it locally:

  ======================================================================
  FAIL: test_vmap_masked_scatter (test_vmap.TestVmap.test_vmap_masked_scatter)
  ----------------------------------------------------------------------
  Traceback (most recent call last):
    File "/home/runner/work/mlx/mlx/python/tests/test_vmap.py", line 900, in test_vmap_masked_scatter
      self.assertTrue(mx.array_equal(expected, out))
      ~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  AssertionError: array(False, dtype=bool) is not true
  
  ----------------------------------------------------------------------

Comment thread mlx/backend/cuda/indexing.cpp Outdated
if (mask_flat.data<void>() != mask.data<void>()) {
encoder.add_temporary(mask_flat);
}
encoder.add_temporary(mask_flat);
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hmm the previous code is actually correct in the sense that we should only add it as temporary if a copy was done and the pointer changed.

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah I got the cause wrong, it turns out to be the implicit copy in data()..

@zcbenz zcbenz force-pushed the fix-flaky-masked-scatter branch from 576c944 to 12c29f6 Compare April 20, 2026 06:44
Copy link
Copy Markdown
Member

@angeloskath angeloskath left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice! That makes a lot of sense and it is a sneaky one hidden in plain sight.

@zcbenz zcbenz merged commit b4ddf9b into ml-explore:main Apr 20, 2026
16 checks passed
@zcbenz zcbenz deleted the fix-flaky-masked-scatter branch April 20, 2026 08:19
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants