Skip to content
Open
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 Paddle
Submodule Paddle updated 79 files
+1 −1 .github/actions/check-bypass/action.yml
+3 −3 .github/workflows/H-Coverage.yml
+11 −1 .github/workflows/_Distribute-stable-Test.yml
+1 −1 .github/workflows/check-bypass.yml
+14 −0 ci/h-test.sh
+4 −4 paddle/common/flags.cc
+10 −5 paddle/fluid/distributed/collective/deep_ep/deep_ep.cpp
+4 −2 paddle/fluid/distributed/collective/deep_ep/deep_ep.hpp
+2 −1 paddle/fluid/distributed/collective/deep_ep/kernels/api.cuh
+165 −74 paddle/fluid/distributed/collective/deep_ep/kernels/internode_ll.cu
+11 −0 paddle/fluid/distributed/collective/deep_ep/kernels/launch.cuh
+9 −0 paddle/fluid/distributed/collective/deep_ep/kernels/utils.cuh
+25 −5 paddle/fluid/eager/backward.cc
+4 −2 paddle/fluid/eager/grad_tensor_holder.h
+5 −0 paddle/fluid/eager/pylayer/py_layer_node.h
+0 −4 paddle/fluid/pybind/auto_parallel_py.cc
+1 −0 paddle/fluid/pybind/eager.h
+2 −2 paddle/fluid/pybind/eager_functions.cc
+0 −4 paddle/fluid/pybind/eager_math_op_patch.cc
+15 −0 paddle/fluid/pybind/eager_py_layer.cc
+0 −4 paddle/fluid/pybind/slice_utils.h
+21 −8 paddle/phi/api/lib/api_gen_utils.cc
+19 −1 paddle/phi/core/memory/allocation/allocator_facade.cc
+4 −4 paddle/phi/core/memory/allocation/virtual_memory_auto_growth_best_fit_allocator.cc
+14 −4 paddle/phi/core/memory/mem_visitor.cc
+18 −8 paddle/phi/core/memory/mem_visitor.h
+4 −4 paddle/phi/kernels/binomial_kernel.h
+15 −0 paddle/phi/kernels/group_norm_kernel.h
+8 −4 paddle/phi/kernels/kps/elementwise_kernel.cu
+147 −16 paddle/phi/kernels/xpu/elementwise_add_grad_kernel.cc
+8 −4 paddle/phi/kernels/xpu/elementwise_add_kernel.cc
+1 −0 pyproject.toml
+70 −0 python/paddle/autograd/py_layer.py
+18 −0 python/paddle/compat/__init__.py
+5 −20 python/paddle/compat/nn/__init__.py
+94 −1 python/paddle/compat/nn/functional/__init__.py
+88 −5 python/paddle/compat/proxy.py
+6 −4 python/paddle/device/__init__.py
+75 −69 python/paddle/distributed/auto_parallel/intermediate/context_parallel.py
+10 −4 python/paddle/distributed/auto_parallel/static/cost/op_runtime_cost.py
+4 −0 python/paddle/distributed/communication/deep_ep/buffer.py
+24 −10 python/paddle/distributed/fleet/utils/hybrid_parallel_inference.py
+5 −1 python/paddle/distributed/flex_checkpoint/aoa/aoa_engine.py
+714 −429 python/paddle/distributed/flex_checkpoint/dcp/full_param.py
+6 −6 python/paddle/incubate/nn/functional/fused_transformer.py
+4 −4 python/paddle/incubate/nn/layer/fused_transformer.py
+54 −36 python/paddle/incubate/optimizer/gradient_merge.py
+2 −1 python/paddle/jit/dy2static/transformers/base.py
+6 −4 python/paddle/jit/dy2static/utils.py
+2 −7 python/paddle/jit/sot/opcode_translator/executor/dispatcher.py
+4 −1 python/paddle/jit/sot/opcode_translator/executor/tracker.py
+4 −1 python/paddle/nn/attention/sdpa.py
+18 −15 python/paddle/nn/layer/layers.py
+16 −15 python/paddle/nn/layer/transformer.py
+0 −6 python/paddle/optimizer/optimizer.py
+12 −11 python/paddle/pir/math_op_patch.py
+14 −6 python/paddle/quantization/config.py
+53 −12 python/paddle/tensor/manipulation.py
+14 −6 python/paddle/tensor/math.py
+46 −43 python/paddle/tensorrt/export.py
+30 −0 python/paddle/utils/decorator_utils.py
+2 −2 test/auto_parallel/pir/mlp_demo.py
+22 −0 test/compat/test_torch_proxy.py
+2 −2 test/cpp/phi/memory/gen_compact_test.cc
+214 −3 test/flex_checkpoint/model_full_param_logic.py
+27 −1 test/flex_checkpoint/test_model_full_param.py
+48 −29 test/legacy_test/nets.py
+27 −0 test/legacy_test/test_add_op.py
+51 −0 test/legacy_test/test_compat_seed.py
+88 −28 test/legacy_test/test_compat_unfold.py
+149 −0 test/legacy_test/test_index_add_op.py
+5 −0 test/legacy_test/test_multi_scale_pool_allocator.py
+0 −41 test/legacy_test/test_optimizer.py
+47 −0 test/legacy_test/test_pylayer_op.py
+75 −1 test/legacy_test/test_unflatten.py
+91 −91 test/tools/test_sampcd_processor.py
+36 −36 test/tools/test_type_checking.py
+12 −12 tools/sampcd_processor_readme.md
+4 −4 tools/sampcd_processor_utils.py
Loading