mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-28 02:04:53 +08:00
Test Plan: wip Differential Revision: D52556070 Pull Request resolved: https://github.com/pytorch/pytorch/pull/116985 Approved by: https://github.com/suo
16 lines
314 B
Python
16 lines
314 B
Python
from dataclasses import dataclass
|
|
from typing import Optional
|
|
|
|
|
|
__all__ = ["ScriptObjectMeta"]
|
|
|
|
|
|
@dataclass
|
|
class ScriptObjectMeta:
|
|
"""
|
|
Metadata which is stored on nodes representing ScriptObjects.
|
|
"""
|
|
|
|
# Key into constants table to retrieve the real ScriptObject.
|
|
constant_name: Optional[str]
|