Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .main.commit
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7ca9dc56b1e52a02b495493f2588c85e214b488e
905c0e38655a61e603529b972ca9fdffd7daa667
2 changes: 1 addition & 1 deletion 3rdparty/Megatron-LM
Submodule Megatron-LM updated 37 files
+40 −0 docs/user-guide/data-preparation.md
+0 −8 megatron/core/enums.py
+16 −1 megatron/core/extensions/transformer_engine.py
+3 −3 megatron/core/inference/contexts/attention_context/mamba_metadata.py
+87 −54 megatron/core/inference/contexts/dynamic_context.py
+29 −5 megatron/core/inference/engines/dynamic_engine.py
+6 −2 megatron/core/inference/model_inference_wrappers/abstract_model_inference_wrapper.py
+182 −0 megatron/core/inference/symmetric_memory.py
+2 −10 megatron/core/inference/text_generation_controllers/text_generation_controller.py
+6 −1 megatron/core/models/common/embeddings/rope_utils.py
+5 −54 megatron/core/parallel_state.py
+0 −9 megatron/core/pipeline_parallel/schedules.py
+6 −2 megatron/core/ssm/mamba_layer.py
+17 −9 megatron/core/tensor_parallel/inference_layers.py
+0 −9 megatron/core/transformer/enums.py
+32 −24 megatron/core/transformer/moe/experts.py
+7 −5 megatron/core/transformer/moe/token_dispatcher_inference.py
+6 −2 megatron/core/transformer/transformer_layer.py
+0 −111 megatron/core/utils.py
+2 −2 megatron/training/training.py
+1 −0 pyproject.toml
+4,621 −4,619 ...test_cases/hybrid/hybrid_dynamic_inference_tp1_pp1_dp8_583m_chunked_prefill/golden_values_dev_dgx_h100.json
+2 −0 ...ctional_tests/test_cases/hybrid/hybrid_dynamic_inference_tp1_pp1_dp8_583m_chunked_prefill/model_config.yaml
+2 −2 tests/test_utils/recipes/h100/mamba-dynamic-inference.yaml
+34 −0 tests/unit_tests/data/test_preprocess_data.py
+48 −0 tests/unit_tests/inference/contexts/attention_metadata/test_mamba_metadata.py
+1,295 −0 tests/unit_tests/inference/contexts/test_dynamic_context.py
+911 −47 tests/unit_tests/inference/engines/test_dynamic_engine.py
+101 −2 tests/unit_tests/inference/test_batch_dimension_utils.py
+28 −40 tests/unit_tests/inference/test_data_parallel_inference_coordinator.py
+14 −8 tests/unit_tests/inference/test_moe_inference.py
+193 −0 tests/unit_tests/inference/test_stop_words.py
+286 −0 tests/unit_tests/inference/text_generation_controllers/test_text_generation_controller.py
+258 −0 tests/unit_tests/ssm/test_causal_conv1d_triton.py
+3 −0 tests/unit_tests/transformer/test_vision_cuda_graphs.py
+195 −120 tools/preprocess_data.py
+9 −10 uv.lock
Loading
Loading