()
| 12222 | return r; |
| 12223 | } |
| 12224 | createNone() { |
| 12225 | const n = this.create('prim::Constant'); |
| 12226 | n.output().setType(torch.NoneType.get()); |
| 12227 | return n; |
| 12228 | } |
| 12229 | createUninitialized(typ) { |
| 12230 | const n = this.create('prim::Uninitialized'); |
| 12231 | n.output().setType(typ); |
no test coverage detected