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 73 files
+1 −0 .gitignore
+6 −0 ci/check_approval.sh
+1 −1 ci/run_sot_test.sh
+7 −0 paddle/fluid/pybind/eager_method.cc
+2 −1 paddle/fluid/pybind/sot/cpython_internals/internals_3_14.c
+47 −0 paddle/phi/api/include/compat/ATen/core/ivalue.h
+81 −89 paddle/phi/api/include/compat/ATen/ops/arange.h
+6 −0 paddle/phi/api/include/compat/ATen/ops/equal.h
+74 −4 paddle/phi/api/include/compat/ATen/ops/resize.h
+25 −3 paddle/phi/api/include/compat/ATen/ops/select.h
+15 −0 paddle/phi/api/include/compat/ATen/ops/std.h
+1 −0 paddle/phi/api/include/compat/CMakeLists.txt
+98 −3 paddle/phi/api/include/compat/c10/core/Allocator.h
+85 −25 paddle/phi/api/include/compat/c10/core/Device.cpp
+80 −3 paddle/phi/api/include/compat/c10/core/Device.h
+15 −0 paddle/phi/api/include/compat/c10/core/DeviceType.h
+293 −109 paddle/phi/api/include/compat/c10/core/Event.h
+35 −13 paddle/phi/api/include/compat/c10/core/ScalarType.h
+5 −3 paddle/phi/api/include/compat/c10/core/Stream.cpp
+2 −3 paddle/phi/api/include/compat/c10/core/Stream.h
+44 −0 paddle/phi/api/include/compat/c10/cuda/CUDAFunctions.cpp
+7 −23 paddle/phi/api/include/compat/c10/cuda/CUDAFunctions.h
+69 −35 paddle/phi/api/include/compat/c10/cuda/CUDAGuard.h
+88 −44 paddle/phi/api/include/compat/c10/cuda/CUDAStream.h
+10 −10 paddle/phi/api/include/compat/c10/util/Exception.h
+0 −2 paddle/phi/api/include/compat/torch/csrc/api/include/torch/cuda.h
+22 −0 paddle/phi/api/include/compat/torch/csrc/api/include/torch/torch.h
+39 −0 paddle/phi/api/include/compat/torch/csrc/api/include/torch/version.h
+8 −6 paddle/phi/api/include/compat/torch/library.cpp
+9 −25 paddle/phi/api/include/compat/torch/library.h
+1 −1 paddle/phi/core/tensor_meta.cc
+3 −0 paddle/phi/kernels/gpu/layer_norm_grad_kernel.cu
+3 −37 paddle/phi/kernels/gpu/rms_norm_cuda_kernel.h
+31 −4 paddle/phi/kernels/gpu/std_var_grad_kernel.cu
+4 −4 paddle/phi/kernels/gpu/std_var_kernel.cu
+5 −0 paddle/phi/kernels/legacy/xpu/batched_gemm_xpu_utils.h
+10 −4 paddle/phi/kernels/stride/view_kernel.cc
+18 −6 paddle/phi/kernels/xpu/fused_rms_norm_quant_grad_kernel.cc
+2 −2 paddle/phi/kernels/xpu/fused_rms_norm_quant_kernel.cc
+2 −2 paddle/phi/ops/yaml/backward.yaml
+1 −1 paddle/phi/ops/yaml/ops.yaml
+4 −1 python/paddle/autograd/function.py
+54 −100 python/paddle/base/dygraph/tensor_patch_methods.py
+1 −1 python/paddle/base/framework.py
+13 −22 python/paddle/nn/functional/norm.py
+212 −46 python/paddle/nn/layer/layers.py
+1 −1 python/paddle/pir/math_op_patch.py
+1 −1 python/paddle/tensor/creation.py
+1 −1 test/cpp/compat/ATen_TensorAccessor_test.cc
+67 −7 test/cpp/compat/ATen_factory_default_dtype_test.cc
+25 −1 test/cpp/compat/ATen_pin_memory_creation_test.cc
+14 −0 test/cpp/compat/ATen_record_stream_test.cc
+92 −2 test/cpp/compat/ATen_resize_test.cc
+1 −0 test/cpp/compat/CMakeLists.txt
+48 −0 test/cpp/compat/c10_Device_test.cc
+120 −0 test/cpp/compat/c10_Event_test.cc
+47 −62 test/cpp/compat/c10_ScalarType_test.cc
+20 −0 test/cpp/compat/c10_Stream_test.cc
+3 −0 test/cpp/compat/c10_layout_test.cc
+11 −6 test/cpp/compat/c10_storage_test.cc
+1 −1 test/cpp/compat/compat_basic_test.cc
+56 −13 test/cpp/compat/torch_library_test.cc
+18 −0 test/cpp/phi/core/test_dense_tensor.cc
+259 −2 test/legacy_test/test_api_compatibility_part3.py
+5 −0 test/legacy_test/test_autograd_function.py
+3 −0 test/legacy_test/test_dlpack_basic.py
+30 −0 test/legacy_test/test_eager_tensor.py
+1 −0 test/legacy_test/test_inplace.py
+1 −2 test/legacy_test/test_parameter.py
+83 −6 test/legacy_test/test_rms_norm_op.py
+15 −8 test/legacy_test/test_transforms_static.py
+16 −7 test/legacy_test/test_zero_size.py
+12 −21 test/xpu/test_rms_norm_xpu.py
Loading