feat: Necessary changes for Gym GRPO tutorial#1630
Conversation
📝 WalkthroughWalkthroughUpdates Gym submodule pointer, adds "datasets" to cached dependencies, introduces comprehensive GRPO configuration for Nemotron Nano v2, provides multi-node training launch script, extends vLLM config with tool parser plugin support, and enhances vllm_worker_async with improved error handling, tool parser plugin loading, and refined logging. Changes
Estimated code review effort🎯 3 (Moderate) | ⏱️ ~25 minutes Areas requiring extra attention:
Possibly related PRs
Suggested reviewers
Pre-merge checks and finishing touches❌ Failed checks (2 warnings)
✅ Passed checks (2 passed)
✨ Finishing touches
🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Actionable comments posted: 4
Caution
Some comments are outside the diff and can’t be posted inline due to platform limitations.
⚠️ Outside diff range comments (1)
nemo_rl/models/generation/vllm/vllm_worker_async.py (1)
318-322: Add requiredmodel_configparameter to OpenAIServingModels constructor call.The
model_configparameter is required in vLLM 0.11.0's OpenAIServingModels constructor but is missing from this call. Provide aModelConfiginstance containing model configuration (e.g., max_model_len). Without it, this will raise a TypeError at runtime.
🧹 Nitpick comments (1)
examples/nemo_gym/launch_nemo_gym_multinode_training.sh (1)
8-20: Quote variables to prevent word splitting.The
REPO_LOCATIONvariable inside the HEREDOC should be quoted for safety. Also, using$@at line 19 may not work as expected inside a HEREDOC since it's evaluated at HEREDOC construction time, not execution time.read -r -d '' COMMAND <<EOF -cd ${REPO_LOCATION} +cd "\${REPO_LOCATION}" HF_HOME=$PWD/.cache/ \ -WANDB_API_KEY=$WANDB_API_KEY \ +WANDB_API_KEY=\$WANDB_API_KEY \ NRL_FORCE_REBUILD_VENVS=true \ uv run python examples/nemo_gym/run_grpo_nemo_gym.py \ - ++cluster.num_nodes=$NUM_ACTOR_NODES \ - ++logger.wandb.name=$EXP_NAME \ - ++logger.log_dir=results/$EXP_NAME \ - ++checkpointing.checkpoint_dir=results/$EXP_NAME \ + ++cluster.num_nodes=\$NUM_ACTOR_NODES \ + ++logger.wandb.name=\$EXP_NAME \ + ++logger.log_dir=results/\$EXP_NAME \ + ++checkpointing.checkpoint_dir=results/\$EXP_NAME \ $@ EOFNote: The current approach expands variables at HEREDOC creation time which may be intentional for
sbatch. Verify this is the desired behavior.
📜 Review details
Configuration used: Path: .coderabbit.yaml
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (7)
3rdparty/Gym-workspace/Gym(1 hunks)3rdparty/Gym-workspace/setup.py(1 hunks)examples/nemo_gym/grpo_workplace_assistant_nemotron_nano_v2_9b.yaml(1 hunks)examples/nemo_gym/launch_nemo_gym_multinode_training.sh(1 hunks)nemo_rl/models/generation/vllm/config.py(1 hunks)nemo_rl/models/generation/vllm/vllm_worker_async.py(4 hunks)tests/unit/models/generation/test_vllm_generation.py(1 hunks)
🧰 Additional context used
📓 Path-based instructions (5)
**/*.py
📄 CodeRabbit inference engine (CODING_GUIDELINES.md)
**/*.py: Conform code to Python 3.12+
Indent code with 4 spaces. Do not use tabs
Use snake_case for file names
Use PascalCase for class names
Use snake_case for function and method names
Use snake_case for local variables
Prefix variable names that start with a number with 'k' (e.g., k_99th_percentile)
Use upper snake_case with 'G' prefix for global variables (e.g., G_MY_GLOBAL)
Use upper snake_case for constants
Avoid shadowing variables declared in an outer scope
Initialize all externally visible members of a class in the constructor
Prefer docstrings over comments for interfaces that may be used outside a file
Reserve comments for code within a function or interfaces that are local to a file
If a piece of code is commented out, include a comment describing its usage and why it's commented out. Remove debug comments before merging
Use Google style docstrings for classes and functions in Python, which can be parsed by Sphinx
Avoid using reflection when functionality can be easily achieved without reflection
When using try-except blocks, limit the except clause to the smallest set of specific errors possible
When using try-except blocks for duck-typing, keep the body of the try as small as possible and use the else block for logic
YAML is the single source of truth for configuration defaults. Do not set non-None defaults in code for configuration values
For required configuration attributes, access config directly and expect presence (e.g., policy_cfg['precision']) without hidden defaults
Use typing.NotRequired to mark optional attributes in TypedDict for configuration
When adding a new config key to a TypedDict subclass, document the key's purpose, valid values/types, and recommended default, and reflect the default in exemplar YAMLs under examples/configs/*.yaml
Follow the Google Python Style Guide for Python code
Files:
nemo_rl/models/generation/vllm/config.py3rdparty/Gym-workspace/setup.pytests/unit/models/generation/test_vllm_generation.pynemo_rl/models/generation/vllm/vllm_worker_async.py
nemo_rl/**/*.py
📄 CodeRabbit inference engine (CODING_GUIDELINES.md)
For any source file under nemo_rl/*.py that defines a class or function decorated with @ray.remote, add a coverage pragma (# pragma: no cover) because these run in separate Ray processes
Files:
nemo_rl/models/generation/vllm/config.pynemo_rl/models/generation/vllm/vllm_worker_async.py
!(**/tests/**|**/test_*.py|**/test_*.sh)
📄 CodeRabbit inference engine (CODING_GUIDELINES.md)
Add the NVIDIA copyright header to all Python files and shell scripts (excluding tests). The header should include the current year
Files:
nemo_rl/models/generation/vllm/config.py3rdparty/Gym-workspace/Gymexamples/nemo_gym/launch_nemo_gym_multinode_training.sh3rdparty/Gym-workspace/setup.pytests/unit/models/generation/test_vllm_generation.pyexamples/nemo_gym/grpo_workplace_assistant_nemotron_nano_v2_9b.yamlnemo_rl/models/generation/vllm/vllm_worker_async.py
**/*.{py,sh}
📄 CodeRabbit inference engine (CODING_GUIDELINES.md)
The NVIDIA copyright header should appear at the top of all Python files and shell scripts (excluding tests)
Files:
nemo_rl/models/generation/vllm/config.pyexamples/nemo_gym/launch_nemo_gym_multinode_training.sh3rdparty/Gym-workspace/setup.pytests/unit/models/generation/test_vllm_generation.pynemo_rl/models/generation/vllm/vllm_worker_async.py
**/*.sh
📄 CodeRabbit inference engine (CODING_GUIDELINES.md)
**/*.sh: Use uv run instead of python to execute scripts
Follow the Google Shell Style Guide for shell scripts
Files:
examples/nemo_gym/launch_nemo_gym_multinode_training.sh
🧠 Learnings (4)
📚 Learning: 2025-09-19T03:00:58.662Z
Learnt from: shuo-nvidia
Repo: NVIDIA-NeMo/RL PR: 1006
File: examples/configs/recipes/llm/distillation-qwen3-32b-to-1.7b-base-1n8g-fsdp2tp1.v1.yaml:85-101
Timestamp: 2025-09-19T03:00:58.662Z
Learning: In distillation and GRPO configurations, max_new_tokens is intentionally set to the full context window (max_total_sequence_length) for consistency across the codebase. Overflow cases when prompt + generation tokens exceed max_model_len are handled by safeguards implemented in vllm_worker.py.
Applied to files:
examples/nemo_gym/grpo_workplace_assistant_nemotron_nano_v2_9b.yamlnemo_rl/models/generation/vllm/vllm_worker_async.py
📚 Learning: 2025-09-18T14:57:31.003Z
Learnt from: zpqiu
Repo: NVIDIA-NeMo/RL PR: 1006
File: nemo_rl/algorithms/distillation.py:312-354
Timestamp: 2025-09-18T14:57:31.003Z
Learning: The distillation algorithm's cluster setup logic is designed to follow the same patterns used in GRPO for handling distributed training clusters and resource allocation.
Applied to files:
examples/nemo_gym/grpo_workplace_assistant_nemotron_nano_v2_9b.yaml
📚 Learning: 2025-09-10T05:34:35.406Z
Learnt from: bxyu-nvidia
Repo: NVIDIA-NeMo/RL PR: 1110
File: nemo_rl/models/generation/vllm/vllm_worker_async.py:346-359
Timestamp: 2025-09-10T05:34:35.406Z
Learning: In nemo_rl/models/generation/vllm/vllm_worker_async.py, the HTTP server intentionally uses different path structures: `/v1/chat/completions` is under the `/v1` prefix while `/tokenize` is at the root level without the `/v1` prefix. This is the intended design.
Applied to files:
nemo_rl/models/generation/vllm/vllm_worker_async.py
📚 Learning: 2025-09-10T05:29:34.349Z
Learnt from: bxyu-nvidia
Repo: NVIDIA-NeMo/RL PR: 1110
File: nemo_rl/models/generation/vllm/vllm_worker_async.py:98-105
Timestamp: 2025-09-10T05:29:34.349Z
Learning: In the _maybe_correct_merged_tokens function in nemo_rl/models/generation/vllm/vllm_worker_async.py, the loop condition `len(candidate_token_ids) < len(actual_token_ids) - 1` is intentionally designed to prevent accessing the final token in actual_token_ids, likely to handle specific tokenization edge cases in the vLLM HTTP server integration.
Applied to files:
nemo_rl/models/generation/vllm/vllm_worker_async.py
🪛 GitHub Actions: CICD NeMo RL
nemo_rl/models/generation/vllm/vllm_worker_async.py
[error] 1-1: pre-commit hook ruff-format failed: 1 file reformatted by this hook. Run 'pre-commit run --all-files' locally to apply changes.
🪛 Shellcheck (0.11.0)
examples/nemo_gym/launch_nemo_gym_multinode_training.sh
[error] 1-1: Tips depend on target shell and yours is unknown. Add a shebang or a 'shell' directive.
(SC2148)
[warning] 5-5: Use 'cd ... || exit' or 'cd ... || return' in case cd fails.
(SC2164)
🔇 Additional comments (11)
3rdparty/Gym-workspace/Gym (1)
1-1: Submodule addition is properly configured.The Gym submodule has been added with correct configuration in
.gitmodules. Since this is a Git submodule pointer (metadata), the coding guidelines requiring NVIDIA copyright headers do not apply.3rdparty/Gym-workspace/setup.py (1)
45-45: LGTM!Adding
datasetsto the cached dependencies is appropriate. The existing validation mechanism (lines 69-95) will ensure this remains in sync with the Gym submodule'spyproject.toml.tests/unit/models/generation/test_vllm_generation.py (1)
1369-1375: LGTM!The
decodemethod addition to the mock tokenizer is necessary to support the enhanced assertion messages in_replace_prefix_tokens, which now calltokenizer.decode()for diagnostic output. The no-op implementation is appropriate for this test since it only verifies that anAssertionErroris raised.nemo_rl/models/generation/vllm/config.py (1)
39-41: LGTM!The
tool_parser_pluginfield is correctly typed asNotRequired[str]and documented. The implementation invllm_worker_async.pyusesToolParserManager.import_tool_parser()to load the plugin when configured.nemo_rl/models/generation/vllm/vllm_worker_async.py (3)
109-118: LGTM - Enhanced assertion diagnostics.The detailed error message including token IDs and detokenized representations will significantly help debug issues with non-monotonic trajectories in multi-turn scenarios.
128-135: LGTM - Improved EOS token assertion diagnostics.The enhanced error message provides valuable context when debugging chat template tokenization issues.
302-307: LGTM - Tool parser plugin loading.The conditional import using
ToolParserManager.import_tool_parser()correctly integrates with the newtool_parser_pluginconfig field.examples/nemo_gym/grpo_workplace_assistant_nemotron_nano_v2_9b.yaml (4)
22-22: Approve: Configuration correctly follows pattern for max_new_tokens setting.The configuration correctly sets
max_new_tokens: ${policy.max_total_sequence_length}at line 182 and uses this same value as the basis formax_response_lengthat line 22. This aligns with best practices documented in the learnings, where overflow cases are handled by safeguards in vllm_worker.py.Also applies to: 182-182
67-76: Configuration is valid and consistent across training and generation backends.The dtensor_cfg is properly disabled (lines 67-76) while megatron_cfg is enabled (line 78+) with
tensor_model_parallel_size: 2. With 8 GPUs per node, this allocates 2 GPUs to model parallelism and leaves 4 GPUs for data parallelism, which aligns correctly with the distributed data parallel configuration (grad reduce, overlap settings properly configured). The vLLM generation backend usestensor_parallel_size: 1(line 191) intentionally to allow independent inference instances, which is compatible with the training parallelism strategy. No consistency issues detected.
230-231: Initialize the Gym submodule to access training data.The configuration references data files under
3rdparty/Gym-workspace/Gym/resources_servers/workplace_assistant/data/, but the Gym submodule is not initialized. The submodule directory exists but is empty. Users must initialize this submodule (e.g.,git submodule update --init) before training to ensure the referencedtrain.jsonlandvalidation.jsonlfiles are available.
236-254: These config paths are NeMo-Gym runtime references, not repository paths.The
config_pathsat lines 241–242 are passed to NeMo-Gym as part ofinitial_global_config_dict(as noted in line 239's comment), so they are resolved by the NeMo-Gym environment at runtime, not from the repository filesystem. Unlike the data paths (lines 230–231) which use full3rdparty/Gym-workspace/Gym/paths, these configuration paths are relative references for the NeMo-Gym service to resolve internally. Their correctness cannot be verified by checking the repository structure and should be validated against NeMo-Gym configuration documentation or runtime behavior instead.
|
@bxyu-nvidia can you resolve the linter? |
…eward (#1619) Signed-off-by: alexandery <alexandery@nvidia.com> Signed-off-by: Brian Yu <bxyu@nvidia.com>
…to bxyu/gym-grpo-tutorial
Signed-off-by: Brian Yu <bxyu@nvidia.com>
Signed-off-by: alexandery <alexandery@nvidia.com> Signed-off-by: Brian Yu <bxyu@nvidia.com> Signed-off-by: Yi-Fu Wu <yifu.wu@gmail.com> Signed-off-by: Sahil Modi <samodi@nvidia.com> Signed-off-by: ruit <ruit@nvidia.com> Signed-off-by: Jonas Yang <joyang@nvidia.com> Signed-off-by: ZeYi Lin <944270057@qq.com> Signed-off-by: Alexander Zhipa <azzhipa@amazon.com> Signed-off-by: Yuki Huang <yukih@nvidia.com> Signed-off-by: Lawrence Lane <llane@nvidia.com> Signed-off-by: Terry Kong <terryk@nvidia.com> Co-authored-by: alexandery-nvidia <alexandery@nvidia.com> Co-authored-by: Yi-Fu Wu <yifu.wu@gmail.com> Co-authored-by: Peter Jin <pjin@nvidia.com> Co-authored-by: samodi-nv <141948907+samodi-nv@users.noreply.github.com> Co-authored-by: ruit <ruit@nvidia.com> Co-authored-by: Jonas Yang <joyang@nvidia.com> Co-authored-by: Ze-Yi LIN <58305964+Zeyi-Lin@users.noreply.github.com> Co-authored-by: Alexander Zhipa <alex.zhipa@proton.me> Co-authored-by: Alexander Zhipa <azzhipa@amazon.com> Co-authored-by: Terry Kong <terrycurtiskong@gmail.com> Co-authored-by: Yuki Huang <yukih@nvidia.com> Co-authored-by: Manasa Manohara <mmanohara@nvidia.com> Co-authored-by: Lawrence Lane <llane@nvidia.com> Co-authored-by: Yu Yao <54727607+yaoyu-33@users.noreply.github.com> Co-authored-by: Terry Kong <terryk@nvidia.com>
Signed-off-by: alexandery <alexandery@nvidia.com> Signed-off-by: Brian Yu <bxyu@nvidia.com> Signed-off-by: Yi-Fu Wu <yifu.wu@gmail.com> Signed-off-by: Sahil Modi <samodi@nvidia.com> Signed-off-by: ruit <ruit@nvidia.com> Signed-off-by: Jonas Yang <joyang@nvidia.com> Signed-off-by: ZeYi Lin <944270057@qq.com> Signed-off-by: Alexander Zhipa <azzhipa@amazon.com> Signed-off-by: Yuki Huang <yukih@nvidia.com> Signed-off-by: Lawrence Lane <llane@nvidia.com> Signed-off-by: Terry Kong <terryk@nvidia.com> Co-authored-by: alexandery-nvidia <alexandery@nvidia.com> Co-authored-by: Yi-Fu Wu <yifu.wu@gmail.com> Co-authored-by: Peter Jin <pjin@nvidia.com> Co-authored-by: samodi-nv <141948907+samodi-nv@users.noreply.github.com> Co-authored-by: ruit <ruit@nvidia.com> Co-authored-by: Jonas Yang <joyang@nvidia.com> Co-authored-by: Ze-Yi LIN <58305964+Zeyi-Lin@users.noreply.github.com> Co-authored-by: Alexander Zhipa <alex.zhipa@proton.me> Co-authored-by: Alexander Zhipa <azzhipa@amazon.com> Co-authored-by: Terry Kong <terrycurtiskong@gmail.com> Co-authored-by: Yuki Huang <yukih@nvidia.com> Co-authored-by: Manasa Manohara <mmanohara@nvidia.com> Co-authored-by: Lawrence Lane <llane@nvidia.com> Co-authored-by: Yu Yao <54727607+yaoyu-33@users.noreply.github.com> Co-authored-by: Terry Kong <terryk@nvidia.com> Signed-off-by: Parth Mannan <pmannan@nvidia.com>
Signed-off-by: alexandery <alexandery@nvidia.com> Signed-off-by: Brian Yu <bxyu@nvidia.com> Signed-off-by: Yi-Fu Wu <yifu.wu@gmail.com> Signed-off-by: Sahil Modi <samodi@nvidia.com> Signed-off-by: ruit <ruit@nvidia.com> Signed-off-by: Jonas Yang <joyang@nvidia.com> Signed-off-by: ZeYi Lin <944270057@qq.com> Signed-off-by: Alexander Zhipa <azzhipa@amazon.com> Signed-off-by: Yuki Huang <yukih@nvidia.com> Signed-off-by: Lawrence Lane <llane@nvidia.com> Signed-off-by: Terry Kong <terryk@nvidia.com> Co-authored-by: alexandery-nvidia <alexandery@nvidia.com> Co-authored-by: Yi-Fu Wu <yifu.wu@gmail.com> Co-authored-by: Peter Jin <pjin@nvidia.com> Co-authored-by: samodi-nv <141948907+samodi-nv@users.noreply.github.com> Co-authored-by: ruit <ruit@nvidia.com> Co-authored-by: Jonas Yang <joyang@nvidia.com> Co-authored-by: Ze-Yi LIN <58305964+Zeyi-Lin@users.noreply.github.com> Co-authored-by: Alexander Zhipa <alex.zhipa@proton.me> Co-authored-by: Alexander Zhipa <azzhipa@amazon.com> Co-authored-by: Terry Kong <terrycurtiskong@gmail.com> Co-authored-by: Yuki Huang <yukih@nvidia.com> Co-authored-by: Manasa Manohara <mmanohara@nvidia.com> Co-authored-by: Lawrence Lane <llane@nvidia.com> Co-authored-by: Yu Yao <54727607+yaoyu-33@users.noreply.github.com> Co-authored-by: Terry Kong <terryk@nvidia.com> Signed-off-by: yuanhangs <yuanhangs@nvidia.com>
Signed-off-by: alexandery <alexandery@nvidia.com> Signed-off-by: Brian Yu <bxyu@nvidia.com> Signed-off-by: Yi-Fu Wu <yifu.wu@gmail.com> Signed-off-by: Sahil Modi <samodi@nvidia.com> Signed-off-by: ruit <ruit@nvidia.com> Signed-off-by: Jonas Yang <joyang@nvidia.com> Signed-off-by: ZeYi Lin <944270057@qq.com> Signed-off-by: Alexander Zhipa <azzhipa@amazon.com> Signed-off-by: Yuki Huang <yukih@nvidia.com> Signed-off-by: Lawrence Lane <llane@nvidia.com> Signed-off-by: Terry Kong <terryk@nvidia.com> Co-authored-by: alexandery-nvidia <alexandery@nvidia.com> Co-authored-by: Yi-Fu Wu <yifu.wu@gmail.com> Co-authored-by: Peter Jin <pjin@nvidia.com> Co-authored-by: samodi-nv <141948907+samodi-nv@users.noreply.github.com> Co-authored-by: ruit <ruit@nvidia.com> Co-authored-by: Jonas Yang <joyang@nvidia.com> Co-authored-by: Ze-Yi LIN <58305964+Zeyi-Lin@users.noreply.github.com> Co-authored-by: Alexander Zhipa <alex.zhipa@proton.me> Co-authored-by: Alexander Zhipa <azzhipa@amazon.com> Co-authored-by: Terry Kong <terrycurtiskong@gmail.com> Co-authored-by: Yuki Huang <yukih@nvidia.com> Co-authored-by: Manasa Manohara <mmanohara@nvidia.com> Co-authored-by: Lawrence Lane <llane@nvidia.com> Co-authored-by: Yu Yao <54727607+yaoyu-33@users.noreply.github.com> Co-authored-by: Terry Kong <terryk@nvidia.com> Signed-off-by: yuanhangs <yuanhangs@nvidia.com>
Signed-off-by: alexandery <alexandery@nvidia.com> Signed-off-by: Brian Yu <bxyu@nvidia.com> Signed-off-by: Yi-Fu Wu <yifu.wu@gmail.com> Signed-off-by: Sahil Modi <samodi@nvidia.com> Signed-off-by: ruit <ruit@nvidia.com> Signed-off-by: Jonas Yang <joyang@nvidia.com> Signed-off-by: ZeYi Lin <944270057@qq.com> Signed-off-by: Alexander Zhipa <azzhipa@amazon.com> Signed-off-by: Yuki Huang <yukih@nvidia.com> Signed-off-by: Lawrence Lane <llane@nvidia.com> Signed-off-by: Terry Kong <terryk@nvidia.com> Co-authored-by: alexandery-nvidia <alexandery@nvidia.com> Co-authored-by: Yi-Fu Wu <yifu.wu@gmail.com> Co-authored-by: Peter Jin <pjin@nvidia.com> Co-authored-by: samodi-nv <141948907+samodi-nv@users.noreply.github.com> Co-authored-by: ruit <ruit@nvidia.com> Co-authored-by: Jonas Yang <joyang@nvidia.com> Co-authored-by: Ze-Yi LIN <58305964+Zeyi-Lin@users.noreply.github.com> Co-authored-by: Alexander Zhipa <alex.zhipa@proton.me> Co-authored-by: Alexander Zhipa <azzhipa@amazon.com> Co-authored-by: Terry Kong <terrycurtiskong@gmail.com> Co-authored-by: Yuki Huang <yukih@nvidia.com> Co-authored-by: Manasa Manohara <mmanohara@nvidia.com> Co-authored-by: Lawrence Lane <llane@nvidia.com> Co-authored-by: Yu Yao <54727607+yaoyu-33@users.noreply.github.com> Co-authored-by: Terry Kong <terryk@nvidia.com>
Signed-off-by: alexandery <alexandery@nvidia.com> Signed-off-by: Brian Yu <bxyu@nvidia.com> Signed-off-by: Yi-Fu Wu <yifu.wu@gmail.com> Signed-off-by: Sahil Modi <samodi@nvidia.com> Signed-off-by: ruit <ruit@nvidia.com> Signed-off-by: Jonas Yang <joyang@nvidia.com> Signed-off-by: ZeYi Lin <944270057@qq.com> Signed-off-by: Alexander Zhipa <azzhipa@amazon.com> Signed-off-by: Yuki Huang <yukih@nvidia.com> Signed-off-by: Lawrence Lane <llane@nvidia.com> Signed-off-by: Terry Kong <terryk@nvidia.com> Co-authored-by: alexandery-nvidia <alexandery@nvidia.com> Co-authored-by: Yi-Fu Wu <yifu.wu@gmail.com> Co-authored-by: Peter Jin <pjin@nvidia.com> Co-authored-by: samodi-nv <141948907+samodi-nv@users.noreply.github.com> Co-authored-by: ruit <ruit@nvidia.com> Co-authored-by: Jonas Yang <joyang@nvidia.com> Co-authored-by: Ze-Yi LIN <58305964+Zeyi-Lin@users.noreply.github.com> Co-authored-by: Alexander Zhipa <alex.zhipa@proton.me> Co-authored-by: Alexander Zhipa <azzhipa@amazon.com> Co-authored-by: Terry Kong <terrycurtiskong@gmail.com> Co-authored-by: Yuki Huang <yukih@nvidia.com> Co-authored-by: Manasa Manohara <mmanohara@nvidia.com> Co-authored-by: Lawrence Lane <llane@nvidia.com> Co-authored-by: Yu Yao <54727607+yaoyu-33@users.noreply.github.com> Co-authored-by: Terry Kong <terryk@nvidia.com>
Signed-off-by: alexandery <alexandery@nvidia.com> Signed-off-by: Brian Yu <bxyu@nvidia.com> Signed-off-by: Yi-Fu Wu <yifu.wu@gmail.com> Signed-off-by: Sahil Modi <samodi@nvidia.com> Signed-off-by: ruit <ruit@nvidia.com> Signed-off-by: Jonas Yang <joyang@nvidia.com> Signed-off-by: ZeYi Lin <944270057@qq.com> Signed-off-by: Alexander Zhipa <azzhipa@amazon.com> Signed-off-by: Yuki Huang <yukih@nvidia.com> Signed-off-by: Lawrence Lane <llane@nvidia.com> Signed-off-by: Terry Kong <terryk@nvidia.com> Co-authored-by: alexandery-nvidia <alexandery@nvidia.com> Co-authored-by: Yi-Fu Wu <yifu.wu@gmail.com> Co-authored-by: Peter Jin <pjin@nvidia.com> Co-authored-by: samodi-nv <141948907+samodi-nv@users.noreply.github.com> Co-authored-by: ruit <ruit@nvidia.com> Co-authored-by: Jonas Yang <joyang@nvidia.com> Co-authored-by: Ze-Yi LIN <58305964+Zeyi-Lin@users.noreply.github.com> Co-authored-by: Alexander Zhipa <alex.zhipa@proton.me> Co-authored-by: Alexander Zhipa <azzhipa@amazon.com> Co-authored-by: Terry Kong <terrycurtiskong@gmail.com> Co-authored-by: Yuki Huang <yukih@nvidia.com> Co-authored-by: Manasa Manohara <mmanohara@nvidia.com> Co-authored-by: Lawrence Lane <llane@nvidia.com> Co-authored-by: Yu Yao <54727607+yaoyu-33@users.noreply.github.com> Co-authored-by: Terry Kong <terryk@nvidia.com>
What does this PR do ?
Add a one line overview of what this PR aims to accomplish.
Issues
List issues that this PR closes (syntax):
Usage
# Add a code snippet demonstrating how to use thisBefore your PR is "Ready for review"
Pre checks:
Additional Information
Summary by CodeRabbit
New Features
Chores
✏️ Tip: You can customize this high-level summary in your review settings.