Skip to content

RuntimeError on torch.unqiue_consecutive with torch.compile( fullgraph = true) #113118

Closed
@zoux1a

Description

@zoux1a

🐛 Describe the bug

On eager mode, the func worked as expected behavior. However, encountered a DynamicOutputShapeException(func) with torch.compile that indicates there is a potential bug.

import torch

def forward(x):
  return torch.unique_consecutive(dim=0,input=x)        

x = torch.rand([2],dtype=torch.float32)# generate arg
forward(x)# on eagermode
print("build succeeded")
torch.compile(forward, fullgraph=True)(x)# on torch.compile mode(with fullgrah=True)

error trace:

build succeeded
......
raise DynamicOutputShapeException(func)
torch._subclasses.fake_tensor.DynamicOutputShapeException: aten.unique_consecutive.default

The above exception was the direct cause of the following exception:
......
 raise DynamicOutputShapeException(func)
RuntimeError: Failed running call_function <function boolean_dispatch.<locals>.fn at 0x7f0bf54118b0>(*(), **{'dim': 0, 'input': FakeTensor(..., size=(2,))}):
aten.unique_consecutive.default

During handling of the above exception, another exception occurred:
......
    raise Unsupported(msg)
torch._dynamo.exc.Unsupported: dynamic shape operator: aten.unique_consecutive.default
......
build succeeded
Traceback (most recent call last):
  File "/home/guihuan/.conda/envs/night/lib/python3.9/site-packages/torch/_dynamo/utils.py", line 1536, in run_node
    return node.target(*args, **kwargs)
  File "/home/guihuan/.conda/envs/night/lib/python3.9/site-packages/torch/_jit_internal.py", line 499, in fn
    return if_false(*args, **kwargs)
  File "/home/guihuan/.conda/envs/night/lib/python3.9/site-packages/torch/_jit_internal.py", line 499, in fn
    return if_false(*args, **kwargs)
  File "/home/guihuan/.conda/envs/night/lib/python3.9/site-packages/torch/functional.py", line 1053, in _consecutive_return_output
    output, _, _ = _unique_consecutive_impl(input, return_inverse, return_counts, dim)
  File "/home/guihuan/.conda/envs/night/lib/python3.9/site-packages/torch/functional.py", line 970, in _unique_consecutive_impl
    output, inverse_indices, counts = _VF.unique_consecutive(  # type: ignore[attr-defined]
  File "/home/guihuan/.conda/envs/night/lib/python3.9/site-packages/torch/utils/_stats.py", line 20, in wrapper
    return fn(*args, **kwargs)
  File "/home/guihuan/.conda/envs/night/lib/python3.9/site-packages/torch/_subclasses/fake_tensor.py", line 1390, in __torch_dispatch__
    return self.dispatch(func, types, args, kwargs)
  File "/home/guihuan/.conda/envs/night/lib/python3.9/site-packages/torch/_subclasses/fake_tensor.py", line 1645, in dispatch
    op_impl_out = op_impl(self, func, *args, **kwargs)
  File "/home/guihuan/.conda/envs/night/lib/python3.9/site-packages/torch/_subclasses/fake_tensor.py", line 540, in dyn_shape
    raise DynamicOutputShapeException(func)
torch._subclasses.fake_tensor.DynamicOutputShapeException: aten.unique_consecutive.default

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "/home/guihuan/.conda/envs/night/lib/python3.9/site-packages/torch/_dynamo/utils.py", line 1451, in get_fake_value
    ret_val = wrap_fake_exception(
  File "/home/guihuan/.conda/envs/night/lib/python3.9/site-packages/torch/_dynamo/utils.py", line 994, in wrap_fake_exception
    return fn()
  File "/home/guihuan/.conda/envs/night/lib/python3.9/site-packages/torch/_dynamo/utils.py", line 1452, in <lambda>
    lambda: run_node(tx.output, node, args, kwargs, nnmodule)
  File "/home/guihuan/.conda/envs/night/lib/python3.9/site-packages/torch/_dynamo/utils.py", line 1557, in run_node
    raise RuntimeError(fn_str + str(e)).with_traceback(e.__traceback__) from e
  File "/home/guihuan/.conda/envs/night/lib/python3.9/site-packages/torch/_dynamo/utils.py", line 1536, in run_node
    return node.target(*args, **kwargs)
  File "/home/guihuan/.conda/envs/night/lib/python3.9/site-packages/torch/_jit_internal.py", line 499, in fn
    return if_false(*args, **kwargs)
  File "/home/guihuan/.conda/envs/night/lib/python3.9/site-packages/torch/_jit_internal.py", line 499, in fn
    return if_false(*args, **kwargs)
  File "/home/guihuan/.conda/envs/night/lib/python3.9/site-packages/torch/functional.py", line 1053, in _consecutive_return_output
    output, _, _ = _unique_consecutive_impl(input, return_inverse, return_counts, dim)
  File "/home/guihuan/.conda/envs/night/lib/python3.9/site-packages/torch/functional.py", line 970, in _unique_consecutive_impl
    output, inverse_indices, counts = _VF.unique_consecutive(  # type: ignore[attr-defined]
  File "/home/guihuan/.conda/envs/night/lib/python3.9/site-packages/torch/utils/_stats.py", line 20, in wrapper
    return fn(*args, **kwargs)
  File "/home/guihuan/.conda/envs/night/lib/python3.9/site-packages/torch/_subclasses/fake_tensor.py", line 1390, in __torch_dispatch__
    return self.dispatch(func, types, args, kwargs)
  File "/home/guihuan/.conda/envs/night/lib/python3.9/site-packages/torch/_subclasses/fake_tensor.py", line 1645, in dispatch
    op_impl_out = op_impl(self, func, *args, **kwargs)
  File "/home/guihuan/.conda/envs/night/lib/python3.9/site-packages/torch/_subclasses/fake_tensor.py", line 540, in dyn_shape
    raise DynamicOutputShapeException(func)
RuntimeError: Failed running call_function <function boolean_dispatch.<locals>.fn at 0x7f0bf54118b0>(*(), **{'dim': 0, 'input': FakeTensor(..., size=(2,))}):
aten.unique_consecutive.default

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/home/guihuan/LLM/results/torch-2/2023-11-03-15-06/repros/repro26.py", line 12, in <module>
    torch.compile(forward, fullgraph=True)(x)# on torch.compile mode(with fullgran=True)
  File "/home/guihuan/.conda/envs/night/lib/python3.9/site-packages/torch/_dynamo/eval_frame.py", line 410, in _fn
    return fn(*args, **kwargs)
  File "/home/guihuan/.conda/envs/night/lib/python3.9/site-packages/torch/_dynamo/eval_frame.py", line 571, in catch_errors
    return callback(frame, cache_entry, hooks, frame_state)
  File "/home/guihuan/.conda/envs/night/lib/python3.9/site-packages/torch/_dynamo/convert_frame.py", line 408, in _convert_frame_assert
    return _compile(
  File "/home/guihuan/.conda/envs/night/lib/python3.9/site-packages/torch/_dynamo/convert_frame.py", line 619, in _compile
    guarded_code = compile_inner(code, one_graph, hooks, transform)
  File "/home/guihuan/.conda/envs/night/lib/python3.9/site-packages/torch/_dynamo/utils.py", line 221, in time_wrapper
    r = func(*args, **kwargs)
  File "/home/guihuan/.conda/envs/night/lib/python3.9/site-packages/torch/_dynamo/convert_frame.py", line 536, in compile_inner
    out_code = transform_code_object(code, transform)
  File "/home/guihuan/.conda/envs/night/lib/python3.9/site-packages/torch/_dynamo/bytecode_transformation.py", line 1033, in transform_code_object
    transformations(instructions, code_options)
  File "/home/guihuan/.conda/envs/night/lib/python3.9/site-packages/torch/_dynamo/convert_frame.py", line 149, in _fn
    return fn(*args, **kwargs)
  File "/home/guihuan/.conda/envs/night/lib/python3.9/site-packages/torch/_dynamo/convert_frame.py", line 504, in transform
    tracer.run()
  File "/home/guihuan/.conda/envs/night/lib/python3.9/site-packages/torch/_dynamo/symbolic_convert.py", line 2111, in run
    super().run()
  File "/home/guihuan/.conda/envs/night/lib/python3.9/site-packages/torch/_dynamo/symbolic_convert.py", line 749, in run
    and self.step()
  File "/home/guihuan/.conda/envs/night/lib/python3.9/site-packages/torch/_dynamo/symbolic_convert.py", line 712, in step
    getattr(self, inst.opname)(inst)
  File "/home/guihuan/.conda/envs/night/lib/python3.9/site-packages/torch/_dynamo/symbolic_convert.py", line 407, in wrapper
    return inner_fn(self, inst)
  File "/home/guihuan/.conda/envs/night/lib/python3.9/site-packages/torch/_dynamo/symbolic_convert.py", line 1200, in CALL_FUNCTION_KW
    self.call_function(fn, args, kwargs)
  File "/home/guihuan/.conda/envs/night/lib/python3.9/site-packages/torch/_dynamo/symbolic_convert.py", line 584, in call_function
    self.push(fn.call_function(self, args, kwargs))
  File "/home/guihuan/.conda/envs/night/lib/python3.9/site-packages/torch/_dynamo/variables/torch.py", line 712, in call_function
    tensor_variable = wrap_fx_proxy(
  File "/home/guihuan/.conda/envs/night/lib/python3.9/site-packages/torch/_dynamo/variables/builder.py", line 1357, in wrap_fx_proxy
    return wrap_fx_proxy_cls(
  File "/home/guihuan/.conda/envs/night/lib/python3.9/site-packages/torch/_dynamo/variables/builder.py", line 1447, in wrap_fx_proxy_cls
    example_value = get_fake_value(proxy.node, tx, allow_non_graph_fake=True)
  File "/home/guihuan/.conda/envs/night/lib/python3.9/site-packages/torch/_dynamo/utils.py", line 1468, in get_fake_value
    unimplemented(f"dynamic shape operator: {cause.func}")
  File "/home/guihuan/.conda/envs/night/lib/python3.9/site-packages/torch/_dynamo/exc.py", line 184, in unimplemented
    raise Unsupported(msg)
torch._dynamo.exc.Unsupported: dynamic shape operator: aten.unique_consecutive.default

from user code:
   File "/home/guihuan/LLM/results/torch-2/2023-11-03-15-06/repros/repro26.py", line 7, in forward
    return torch.unique_consecutive(dim=0,input=x)

Set TORCH_LOGS="+dynamo" and TORCHDYNAMO_VERBOSE=1 for more information


You can suppress this exception and fall back to eager by setting:
    import torch._dynamo
    torch._dynamo.config.suppress_errors = True

Versions

Collecting environment information...
PyTorch version: 2.2.0.dev20231105+cu118
Is debug build: False
CUDA used to build PyTorch: 11.8
ROCM used to build PyTorch: N/A

OS: Ubuntu 22.04.3 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.9.18 (main, Sep 11 2023, 13:41:44) [GCC 11.2.0] (64-bit runtime)
Python platform: Linux-5.15.0-86-generic-x86_64-with-glibc2.35
Is CUDA available: True
CUDA runtime version: 12.1.105
CUDA_MODULE_LOADING set to: LAZY
GPU models and configuration:
GPU 0: NVIDIA GeForce RTX 2070
GPU 1: NVIDIA GeForce RTX 2070
GPU 2: NVIDIA GeForce RTX 2070
GPU 3: NVIDIA GeForce RTX 2070

Nvidia driver version: 535.104.12
cuDNN version: Could not collect
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): 32
On-line CPU(s) list: 0-31
Vendor ID: GenuineIntel
Model name: Intel(R) Xeon(R) CPU E5-2630 v3 @ 2.40GHz
CPU family: 6
Model: 63
Thread(s) per core: 2
Core(s) per socket: 8
Socket(s): 2
Stepping: 2
CPU max MHz: 3200.0000
CPU min MHz: 1200.0000
BogoMIPS: 4794.64
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 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 cpuid_fault epb invpcid_single pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm xsaveopt cqm_llc cqm_occup_llc dtherm ida arat pln pts md_clear flush_l1d
Virtualization: VT-x
L1d cache: 512 KiB (16 instances)
L1i cache: 512 KiB (16 instances)
L2 cache: 4 MiB (16 instances)
L3 cache: 40 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
NUMA node1 CPU(s): 1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31
Vulnerability Gather data sampling: Not affected
Vulnerability Itlb multihit: KVM: Mitigation: VMX disabled
Vulnerability L1tf: Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable
Vulnerability Mds: Mitigation; Clear CPU buffers; SMT vulnerable
Vulnerability Meltdown: Mitigation; PTI
Vulnerability Mmio stale data: Mitigation; Clear CPU buffers; SMT vulnerable
Vulnerability Retbleed: Not affected
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; Retpolines, IBPB conditional, IBRS_FW, STIBP conditional, RSB filling, PBRSB-eIBRS Not affected
Vulnerability Srbds: Not affected
Vulnerability Tsx async abort: Not affected

Versions of relevant libraries:
[pip3] numpy==1.26.1
[pip3] pytorch-triton==2.1.0+6e4932cda8
[pip3] torch==2.2.0.dev20231105+cu118
[pip3] torchaudio==2.2.0.dev20231105+cu118
[pip3] torchvision==0.17.0.dev20231105+cu118
[conda] cudatoolkit 11.8.0 h6a678d5_0 defaults
[conda] numpy 1.26.1 pypi_0 pypi
[conda] pytorch-triton 2.1.0+6e4932cda8 pypi_0 pypi
[conda] torch 2.2.0.dev20231105+cu118 pypi_0 pypi
[conda] torchaudio 2.2.0.dev20231105+cu118 pypi_0 pypi
[conda] torchvision 0.17.0.dev20231105+cu118 pypi_0 pypi

cc @ezyang @msaroufim @wconstab @bdhirsh @anijain2305 @zou3519

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugmodule: dynamic shapesoncall: pt2triagedThis issue has been looked at a team member, and triaged and prioritized into an appropriate module

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions