-
Notifications
You must be signed in to change notification settings - Fork 752
feat: Pr 4159 fixes #4417
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
feat: Pr 4159 fixes #4417
Changes from 1 commit
8e9bcd6
4947aaf
30d7e2c
e0592e6
7635f73
a49a434
d639049
f6af901
de9a7b2
d201021
9410f19
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
- Loading branch information
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| # SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved. | ||
| # SPDX-License-Identifier: Apache-2.0 | ||
| # | ||
| # Licensed under the Apache License, Version 2.0 (the "License"); | ||
| # you may not use this file except in compliance with the License. | ||
| # You may obtain a copy of the License at | ||
| # | ||
| # http://www.apache.org/licenses/LICENSE-2.0 | ||
| # | ||
| # Unless required by applicable law or agreed to in writing, software | ||
| # distributed under the License is distributed on an "AS IS" BASIS, | ||
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| # See the License for the specific language governing permissions and | ||
| # limitations under the License. | ||
| enable_attention_dp: true | ||
| disable_overlap_scheduler: false | ||
| moe_config: | ||
| backend: CUTLASS | ||
| cuda_graph_config: | ||
| enable_padding: true | ||
| cache_transceiver_config: | ||
| backend: UCX | ||
| max_tokens_in_buffer: 65536 | ||
| print_iter_log: false | ||
| stream_interval: 10 | ||
| Original file line number | Diff line number | Diff line change | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,27 @@ | ||||||||||||||
| # SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved. | ||||||||||||||
| # SPDX-License-Identifier: Apache-2.0 | ||||||||||||||
| # | ||||||||||||||
| # Licensed under the Apache License, Version 2.0 (the "License"); | ||||||||||||||
| # you may not use this file except in compliance with the License. | ||||||||||||||
| # You may obtain a copy of the License at | ||||||||||||||
| # | ||||||||||||||
| # http://www.apache.org/licenses/LICENSE-2.0 | ||||||||||||||
| # | ||||||||||||||
| # Unless required by applicable law or agreed to in writing, software | ||||||||||||||
| # distributed under the License is distributed on an "AS IS" BASIS, | ||||||||||||||
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||||||||||||||
| # See the License for the specific language governing permissions and | ||||||||||||||
| # limitations under the License. | ||||||||||||||
| enable_attention_dp: false | ||||||||||||||
| disable_overlap_scheduler: true | ||||||||||||||
| moe_config: | ||||||||||||||
| backend: CUTLASS | ||||||||||||||
| enable_chunked_prefill: true | ||||||||||||||
| cuda_graph_config: | ||||||||||||||
| max_batch_size: 32 | ||||||||||||||
| enable_padding: true | ||||||||||||||
| cache_transceiver_config: | ||||||||||||||
| backend: UCX | ||||||||||||||
| max_tokens_in_buffer: 65536 | ||||||||||||||
|
Comment on lines
+23
to
+25
Contributor
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. Fix YAML indentation inconsistency in cache_transceiver_config. Lines 24-25 use 2-space indentation while other nested configs (moe_config, cuda_graph_config) use 4-space indentation. Standardize to 4-space indentation for consistency. cache_transceiver_config:
- backend: UCX
- max_tokens_in_buffer: 65536
+ backend: UCX
+ max_tokens_in_buffer: 65536📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||||||||||
| print_iter_log: false | ||||||||||||||
| stream_interval: 10 | ||||||||||||||
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.
Fix YAML indentation inconsistency in cache_transceiver_config.
Lines 22-23 use 2-space indentation while other nested configs (moe_config, cuda_graph_config) use 4-space indentation. Standardize to 4-space indentation for consistency.
📝 Committable suggestion
🤖 Prompt for AI Agents