(name)
| 16479 | return null; |
| 16480 | } |
| 16481 | _get_method(name) { |
| 16482 | const method = this.find_method(name); |
| 16483 | if (method) { |
| 16484 | return method; |
| 16485 | } |
| 16486 | torch._C.TORCH_CHECK(false, `Method '${name}' is not defined.`); |
| 16487 | return null; |
| 16488 | } |
| 16489 | _has_method(name) { |
| 16490 | return this.find_method(name) ? true : false; |
| 16491 | } |
nothing calls this directly
no test coverage detected