(name)
| 12608 | // return this.getOperator().schema(); |
| 12609 | } |
| 12610 | hasNamedInput(name) { |
| 12611 | for (const argument of this.schema().arguments) { |
| 12612 | if (argument.name === name) { |
| 12613 | return true; |
| 12614 | } |
| 12615 | } |
| 12616 | return false; |
| 12617 | } |
| 12618 | matches(schema) { |
| 12619 | if (torch._C.isBlockListedSchema(schema)) { |
| 12620 | return false; |
no test coverage detected