(range, schema, block)
| 16713 | return args; |
| 16714 | } |
| 16715 | emitOutput(range, schema, block) { |
| 16716 | const ret_type = this._def_stack[this._def_stack.length - 1]._merged_return_type; |
| 16717 | const placeholder_return = this.graph.insertNode(this.graph.createUninitialized(ret_type)).output(); |
| 16718 | block.registerOutput(placeholder_return); |
| 16719 | return new torch.Argument('', this._def_stack[this._def_stack.length - 1]._merged_return_type); |
| 16720 | } |
| 16721 | emitStatements(stmts) { |
| 16722 | for (let i = 0; i < stmts.length; i++) { |
| 16723 | const stmt = stmts[i]; |
no test coverage detected