xref: /aosp_15_r20/external/pytorch/torch/export/custom_obj.py (revision da0073e96a02ea20f0ac840b70461e3646d07c45)
1from dataclasses import dataclass
2
3
4__all__ = ["ScriptObjectMeta"]
5
6
7@dataclass
8class ScriptObjectMeta:
9    """
10    Metadata which is stored on nodes representing ScriptObjects.
11    """
12
13    # Key into constants table to retrieve the real ScriptObject.
14    constant_name: str
15
16    class_fqn: str
17