-
Notifications
You must be signed in to change notification settings - Fork 2.8k
[https://nvbugs/6501404][fix] Request the output window only when bufferSizeBytes >= minRegistrationThreshold #16911
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
b4644bd
0945dda
b98caf0
7a12a7c
a7161f4
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -343,3 +343,19 @@ l0_dgx_h100: | |
| - accuracy/test_llm_api_pytorch.py::TestNemotronV3Super::test_fp8_4gpus[attention_dp_off-cpp_mamba_cache] | ||
| - accuracy/test_llm_api_pytorch.py::TestNemotronV3Super::test_fp8_4gpus[attention_dp_on-python_mamba_cache] | ||
| - accuracy/test_llm_api_pytorch.py::TestNemotronV3Super::test_fp8_4gpus[attention_dp_on-cpp_mamba_cache] | ||
| - condition: | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We don't have a test stage matching those configs. You need to add a new test stage like
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The new stage is added now. |
||
| ranges: | ||
| system_gpu_count: | ||
| gte: 2 | ||
| lte: 2 | ||
| wildcards: | ||
| gpu: | ||
| - '*h100*' | ||
| linux_distribution_name: ubuntu* | ||
| terms: | ||
| stage: post_merge | ||
| backend: pytorch | ||
| auto_trigger: others | ||
| orchestrator: mpi | ||
| tests: | ||
| - unittest/_torch/multi_gpu -m "post_merge" TIMEOUT (90) | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[MINOR] Output gate drops the windowBuffer0.isValid() branch used by input
The output window is now requested only when
bufferSizeBytes >= minRegistrationThreshold. The release notes describe the intended condition aswindowBuffer0.isValid() || bufferSizeBytes >= minRegistrationThreshold, matching the input path. As written, if the input is window-backed (windowBuffer0 valid) but the message is below the threshold, the input uses a registered symmetric pointer while the output falls back to a plaintorch::empty_likepointer. Mixing a registered send buffer with an unregistered recv buffer inrunNCCLAllReduceSymmetricis exactly the asymmetry class this code is sensitive to and could degrade or misbehave on the symmetric kernel. Confirm whether the input path can be window-backed for sub-threshold messages; if so, mirror the full condition here.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The description is updated now.