-
Notifications
You must be signed in to change notification settings - Fork 26k
Description
🐛 Describe the bug
Hi,
Calling the sum() on a scalar or 1D tensors will produce wrong gradients on a tensor that went through LeakyRELU, GELU or Mish.
RELU is fine.
Tensors >= 2D are fine as well.
Might be related to #117826
Snippet of code to reproduce the issue:
import torch
import torch.nn.functional as F
for func in [F.relu, F.leaky_relu, F.gelu, F.mish, lambda x: x]:
for device in ['mps', 'cpu']:
x1 = torch.tensor(3.0).to(device) # This will NOT work for leakyRELU, GELU and Mish
#x1 = torch.Tensor([3.0, -3.1]).to(device) # This will NOT work for leakyRELU, GELU and Mish
#x1 = torch.Tensor([[3.0, -3.1], [2.1, 3.4]]).to(device) # This will work for all the cases
x1.requires_grad = True
y1 = func(x1).sum()
y1.backward()
print("Gradient on " + device + ":")
print(x1.grad)
print('----')I'm happy to help having confirmation that this is indeed a bug and would be glad to have inputs on the possible root cause of the issue.
Versions
PyTorch version: 2.4.0a0+git0ff6d76
Is debug build: True
CUDA used to build PyTorch: None
ROCM used to build PyTorch: N/A
OS: macOS 14.4.1 (arm64)
GCC version: Could not collect
Clang version: 15.0.0 (clang-1500.3.9.4)
CMake version: version 3.28.4
Libc version: N/A
Python version: 3.11.8 | packaged by conda-forge | (main, Feb 16 2024, 20:49:36) [Clang 16.0.6 ] (64-bit runtime)
Python platform: macOS-14.4.1-arm64-arm-64bit
Is CUDA available: False
CUDA runtime version: No CUDA
CUDA_MODULE_LOADING set to: N/A
GPU models and configuration: No CUDA
Nvidia driver version: No CUDA
cuDNN version: No CUDA
HIP runtime version: N/A
MIOpen runtime version: N/A
Is XNNPACK available: False
CPU:
Apple M1 Pro
Versions of relevant libraries:
[pip3] flake8==6.1.0
[pip3] flake8-bugbear==23.3.23
[pip3] flake8-comprehensions==3.12.0
[pip3] flake8-executable==2.1.3
[pip3] flake8-logging-format==0.9.0
[pip3] flake8-pyi==23.3.1
[pip3] flake8-simplify==0.19.3
[pip3] mypy==1.8.0
[pip3] mypy-extensions==1.0.0
[pip3] numpy==1.26.0
[pip3] optree==0.10.0
[pip3] torch==2.4.0a0+gitb27ee65
[conda] numpy 1.26.0 pypi_0 pypi
[conda] optree 0.10.0 pypi_0 pypi
[conda] torch 2.4.0a0+gitb27ee65 dev_0
[conda] torchfix 0.4.0 pypi_0 pypi
Build was done executing: DEBUG=1 USE_DISTRIBUTED=0 USE_MKLDNN=0 USE_CUDA=0 BUILD_TEST=0 USE_FBGEMM=0 USE_NNPACK=0 USE_QNNPACK=0 USE_XNNPACK=0 python setup.py develop
cc @kulinseth @albanD @malfet @DenisVieriu97 @jhavukainen @razarmehr