(self)
| 303 | op_type, *args, **kwargs) |
| 304 | |
| 305 | def __dir__(self): |
| 306 | TriggerLazyImport() |
| 307 | additional_methods = [ |
| 308 | op |
| 309 | for op in _REGISTERED_OPERATORS |
| 310 | if '_ENGINE_' not in op or '_ENGINE_CUDNN' in op] |
| 311 | return sorted(set(chain( |
| 312 | dir(type(self)), |
| 313 | self.__dict__.keys(), |
| 314 | additional_methods |
| 315 | ))) |
| 316 | |
| 317 | |
| 318 | def ScopedName(name): |
nothing calls this directly
no test coverage detected