team-10/env/Lib/site-packages/torch/export/custom_obj.py
2025-08-02 07:34:44 +02:00

16 lines
296 B
Python

from dataclasses import dataclass
__all__ = ["ScriptObjectMeta"]
@dataclass
class ScriptObjectMeta:
"""
Metadata which is stored on nodes representing ScriptObjects.
"""
# Key into constants table to retrieve the real ScriptObject.
constant_name: str
class_fqn: str