(name, fx_node)
| 20206 | } |
| 20207 | } |
| 20208 | sync_fx_node(name, fx_node) { |
| 20209 | if (this.serialized_name_to_node.has(name)) { |
| 20210 | throw new python.Error(`Node ${name} has already been deserialized before.`); |
| 20211 | } |
| 20212 | this.serialized_name_to_node.set(name, fx_node); |
| 20213 | fx_node.meta.set('val', this.serialized_name_to_meta.get(name)); |
| 20214 | } |
| 20215 | deserialize_sym_op_inputs(inputs) { |
| 20216 | return inputs.map((input) => this.deserialize_input(input.arg)); |
| 20217 | } |
no test coverage detected