| Título | pytorch pytorch (torch.jit.script) torch 2.6.0 Segmentation Fault |
|---|
| Descrição | # Bug
When using `@torch.jit.script` for TorchScript compilation, defining a scripted class (e.g., Ignored) where the `__init__` method includes a dynamic Python structure like list causes a `Segmentation fault` at runtime.
# To Reproduce
Running the following code results in a Segmentation fault:
```
import torch
import torch.nn as nn
@torch.jit.script
class Ignored(object):
def __init__(self):
self.count: int = 0
self.items: list = []
``` |
|---|
| Fonte | ⚠️ https://github.com/pytorch/pytorch/issues/149623 |
|---|
| Utilizador | Default436352 (UID 81891) |
|---|
| Submissão | 20/03/2025 15h40 (há 1 Ano) |
|---|
| Moderação | 30/03/2025 19h42 (10 days later) |
|---|
| Estado | Aceite |
|---|
| Entrada VulDB | 302049 [PyTorch 2.6.0 torch.jit.script Excesso de tampão] |
|---|
| Pontos | 20 |
|---|