Fix peer access test synchronization issue #1573
Open
+5
−0
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This Cursor-generated change is expected to resolve failures in QA environments (nvbug 5821337).
Problem
The test
TestBufferPeerAccessAfterImport::test_mainwas failing with assertion errors indicating memory comparison failures. The root cause is most likely a synchronization issue when accessing peer memory.When
dev0accesses peer memory fromdev1,PatternGen.verify_buffer()only synchronizesdev0(the accessing device) but notdev1(the resident device). This can cause synchronization issues wheredev0reads peer memory beforedev1has completed all operations, leading to incorrect data being read.Changes
dev1.sync()call after IPC import (Test 1)dev1.sync()call after granting peer access (Test 3) beforedev0accesses peer memoryThis follows CUDA best practices: when accessing peer memory, sync the resident device to ensure its operations are complete before the peer device reads the memory.