MCPcopy Create free account
hub / github.com/NVIDIA/DALI / _operator_name

Method _operator_name

dali/python/nvidia/dali/external_source.py:973–979  ·  view source on GitHub ↗

Return a proper display name of operator based on the API it was instantiated in. Only valid after `__init__` kwargs were split into `_init_args` and `_call_args`.

(self)

Source from the content-addressed store, hash-verified

971 return op_instance.unwrapped_outputs
972
973 def _operator_name(self):
974 """
975 Return a proper display name of operator based on the API it was instantiated in.
976
977 Only valid after `__init__` kwargs were split into `_init_args` and `_call_args`.
978 """
979 return f"{self._init_args['_module']}.{self._init_args['_display_name']}"
980
981 __doc__ += _args_doc
982 __call__.__doc__ += _args_doc

Callers 2

__init__Method · 0.95
__call__Method · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected