(inputs)
| 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 | } |
| 20218 | deserialize_inputs(target, serialized_node) { |
| 20219 | const schema_args = this._get_schema_from_target(target).arguments; |
| 20220 | const actual_args = new Map(serialized_node.inputs.map((input) => [input.name, this.deserialize_input(input.arg)])); |
no test coverage detected