Skip to content
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鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

torch._transform_bias_rescale_qkv:FPE #128690

Open
LongZE666 opened this issue Jun 14, 2024 · 1 comment
Open

torch._transform_bias_rescale_qkv:FPE #128690

LongZE666 opened this issue Jun 14, 2024 · 1 comment
Labels
module: crash Problem manifests as a hard crash, as opposed to a RuntimeError module: edge cases Adversarial inputs unlikely to occur in practice oncall: transformer/mha Issues related to Transformers and MultiheadAttention triaged This issue has been looked at a team member, and triaged and prioritized into an appropriate module

Comments

@LongZE666
Copy link

LongZE666 commented Jun 14, 2024

馃悰 Describe the bug

torch._transform_bias_rescale_qkv causes FPE with specific input.

Test code:

import torch

qkv = torch.full((11, 0, 4, 0, 0, 5, 6, 8, 0, 10, 0, 0, 10, 0, 0, 3, 12, 15, 0, 11,), -1.5e+300, dtype=torch.float64, requires_grad=False)
qkv_bias = torch.full((11, 0, 4, 0, 0, 5, 6, 8, 0, 10, 0, 0, 10, 0, 0, 3, 12, 15, 0, 11,), -1.5e+300, dtype=torch.float64, requires_grad=False)
num_heads = 0
torch._transform_bias_rescale_qkv(qkv, qkv_bias, num_heads)

Error Log:

AddressSanitizer:DEADLYSIGNAL
=================================================================
==68071==ERROR: AddressSanitizer: FPE on unknown address 0x7fd98aecfcc2 (pc 0x7fd98aecfcc2 bp 0x7fffb6063f90 sp 0x7fffb6063e70 T0)
    #0 0x7fd98aecfcc2 in at::native::transform_bias_rescale_qkv_cpu(at::Tensor const&, at::Tensor const&, long) (/usr/local/lib/python3.11/dist-packages/torch/lib/libtorch_cpu.so+0x1ef0cc2)
    #1 0x7fd98b7e7c0b in c10::impl::make_boxed_from_unboxed_functor<c10::impl::detail::WrapFunctionIntoFunctor_<c10::CompileTimeFunctionPointer<std::tuple<at::Tensor, at::Tensor, at::Tensor> (at::Tensor const&, at::Tensor const&, long), &at::(anonymous namespace)::(anonymous namespace)::wrapper_CPU___transform_bias_rescale_qkv>, std::tuple<at::Tensor, at::Tensor, at::Tensor>, c10::guts::typelist::typelist<at::Tensor const&, at::Tensor const&, long> >, false>::call(c10::OperatorKernel*, c10::OperatorHandle const&, c10::DispatchKeySet, std::vector<c10::IValue, std::allocator<c10::IValue> >*) (/usr/local/lib/python3.11/dist-packages/torch/lib/libtorch_cpu.so+0x2808c0b)
    #2 0x7fd98db0fba4 in torch::autograd::autogradNotImplementedFallbackImpl(c10::OperatorHandle const&, c10::DispatchKeySet, std::vector<c10::IValue, std::allocator<c10::IValue> >*) (/usr/local/lib/python3.11/dist-packages/torch/lib/libtorch_cpu.so+0x4b30ba4)
    #3 0x7fd98b008a17 in at::_ops::_transform_bias_rescale_qkv::call(at::Tensor const&, at::Tensor const&, long) (/usr/local/lib/python3.11/dist-packages/torch/lib/libtorch_cpu.so+0x2029a17)
    #4 0x7fd995351d99 in torch::autograd::THPVariable__transform_bias_rescale_qkv(_object*, _object*, _object*) (/usr/local/lib/python3.11/dist-packages/torch/lib/libtorch_python.so+0x59ad99)
    #5 0x51ad66  (/usr/bin/python3.11+0x51ad66)
    #6 0x4e75db in _PyObject_MakeTpCall (/usr/bin/python3.11+0x4e75db)
    #7 0x4fb151 in _PyEval_EvalFrameDefault (/usr/bin/python3.11+0x4fb151)
    #8 0x62e1b3  (/usr/bin/python3.11+0x62e1b3)
    #9 0x4f3a66 in PyEval_EvalCode (/usr/bin/python3.11+0x4f3a66)
    #10 0x647c36  (/usr/bin/python3.11+0x647c36)
    #11 0x64534f  (/usr/bin/python3.11+0x64534f)
    #12 0x650d14  (/usr/bin/python3.11+0x650d14)
    #13 0x650a63 in _PyRun_SimpleFileObject (/usr/bin/python3.11+0x650a63)
    #14 0x650832 in _PyRun_AnyFileObject (/usr/bin/python3.11+0x650832)
    #15 0x64f786 in Py_RunMain (/usr/bin/python3.11+0x64f786)
    #16 0x61ee0c in Py_BytesMain (/usr/bin/python3.11+0x61ee0c)
    #17 0x7fd9997c4d8f  (/lib/x86_64-linux-gnu/libc.so.6+0x29d8f)
    #18 0x7fd9997c4e3f in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x29e3f)
    #19 0x61ec94 in _start (/usr/bin/python3.11+0x61ec94)

AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: FPE (/usr/local/lib/python3.11/dist-packages/torch/lib/libtorch_cpu.so+0x1ef0cc2) in at::native::transform_bias_rescale_qkv_cpu(at::Tensor const&, at::Tensor const&, long)
==68071==ABORTING

Versions

PyTorch version: 2.3.0a0
Is debug build: False
CUDA used to build PyTorch: None
ROCM used to build PyTorch: N/A

OS: Ubuntu 22.04.4 LTS (x86_64)
GCC version: (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0
Clang version: Could not collect
CMake version: version 3.22.1
Libc version: glibc-2.35

Python version: 3.11.0rc1 (main, Aug 12 2022, 10:02:14) [GCC 11.2.0] (64-bit runtime)
Python platform: Linux-5.15.0-91-generic-x86_64-with-glibc2.35
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: True

CPU:
Architecture: x86_64
CPU op-mode(s): 32-bit, 64-bit
Address sizes: 46 bits physical, 48 bits virtual
Byte Order: Little Endian
CPU(s): 80
On-line CPU(s) list: 0-79
Vendor ID: GenuineIntel
Model name: Intel(R) Xeon(R) Gold 5218R CPU @ 2.10GHz
CPU family: 6
Model: 85
Thread(s) per core: 2
Core(s) per socket: 20
Socket(s): 2
Stepping: 7
CPU max MHz: 4000.0000
CPU min MHz: 800.0000
BogoMIPS: 4200.00
Flags: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single intel_ppin ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke avx512_vnni md_clear flush_l1d arch_capabilities
Virtualization: VT-x
L1d cache: 1.3 MiB (40 instances)
L1i cache: 1.3 MiB (40 instances)
L2 cache: 40 MiB (40 instances)
L3 cache: 55 MiB (2 instances)
NUMA node(s): 2
NUMA node0 CPU(s): 0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78
NUMA node1 CPU(s): 1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79
Vulnerability Gather data sampling: Mitigation; Microcode
Vulnerability Itlb multihit: KVM: Mitigation: VMX disabled
Vulnerability L1tf: Not affected
Vulnerability Mds: Not affected
Vulnerability Meltdown: Not affected
Vulnerability Mmio stale data: Mitigation; Clear CPU buffers; SMT vulnerable
Vulnerability Retbleed: Mitigation; Enhanced IBRS
Vulnerability Spec rstack overflow: Not affected
Vulnerability Spec store bypass: Mitigation; Speculative Store Bypass disabled via prctl and seccomp
Vulnerability Spectre v1: Mitigation; usercopy/swapgs barriers and __user pointer sanitization
Vulnerability Spectre v2: Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence
Vulnerability Srbds: Not affected
Vulnerability Tsx async abort: Mitigation; TSX disabled

Versions of relevant libraries:
[pip3] numpy==1.26.4
[pip3] optree==0.11.0
[pip3] torch==2.3.0a0+git97ff6cf
[conda] No relevant packages

cc @jbschlosser @bhosmer @cpuhrsch @erichan1 @drisspg @mikaylagawarecki

@malfet malfet added module: crash Problem manifests as a hard crash, as opposed to a RuntimeError module: edge cases Adversarial inputs unlikely to occur in practice triaged This issue has been looked at a team member, and triaged and prioritized into an appropriate module oncall: transformer/mha Issues related to Transformers and MultiheadAttention labels Jun 14, 2024
@malfet
Copy link
Contributor

malfet commented Jun 14, 2024

We should probably check for empty inputs...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
module: crash Problem manifests as a hard crash, as opposed to a RuntimeError module: edge cases Adversarial inputs unlikely to occur in practice oncall: transformer/mha Issues related to Transformers and MultiheadAttention triaged This issue has been looked at a team member, and triaged and prioritized into an appropriate module
Projects
None yet
Development

No branches or pull requests

2 participants