(
self,
target: str,
fake_tensor: Tensor,
input_kind: InputKind = InputKind.USER_INPUT,
)
| 67 | self.constants[target] = value |
| 68 | |
| 69 | def placeholder( |
| 70 | self, |
| 71 | target: str, |
| 72 | fake_tensor: Tensor, |
| 73 | input_kind: InputKind = InputKind.USER_INPUT, |
| 74 | ) -> ProxyValue: |
| 75 | placeholder = super().placeholder(target, fake_tensor) |
| 76 | self.insert_input_spec(target, input_kind, fake_tensor) |
| 77 | return placeholder |
| 78 | |
| 79 | def output( |
| 80 | self, |