Searched refs:BuiltinFunctionType (Results 1 – 21 of 21) sorted by relevance
/external/pytorch/torch/onnx/_internal/fx/ |
D | registration.py | 69 cls, builtin_function: types.BuiltinFunctionType argument
|
D | onnxfunction_dispatcher.py | 298 if isinstance(node.target, types.BuiltinFunctionType):
|
/external/python/cpython3/Lib/ |
D | copy.py | 107 types.BuiltinFunctionType, types.EllipsisType, 187 d[types.BuiltinFunctionType] = _deepcopy_atomic
|
D | types.py | 44 BuiltinFunctionType = type(len) variable
|
D | dataclasses.py | 239 types.BuiltinFunctionType,
|
D | inspect.py | 541 return isinstance(object, types.BuiltinFunctionType) 1998 types.BuiltinFunctionType)
|
D | typing.py | 2394 _allowed_types = (types.FunctionType, types.BuiltinFunctionType,
|
/external/python/cpython3/Lib/test/ |
D | test_pyclbr.py | 8 from types import FunctionType, MethodType, BuiltinFunctionType 92 self.assertIsInstance(py_item, (FunctionType, BuiltinFunctionType))
|
D | pickletester.py | 2724 if isinstance(t, types.BuiltinFunctionType):
|
/external/pytorch/test/dynamo/ |
D | test_trace_rules.py | 144 types.BuiltinFunctionType, 360 types.BuiltinFunctionType,
|
/external/pytorch/torch/onnx/_internal/exporter/ |
D | _registration.py | 36 TorchOp: TypeAlias = Union[torch._ops.OpOverload, types.BuiltinFunctionType, Callable]
|
/external/tensorflow/tensorflow/python/autograph/pyct/ |
D | inspect_utils.py | 63 elif isinstance(f, types.BuiltinFunctionType):
|
/external/python/pyyaml/lib/yaml/ |
D | representer.py | 381 Representer.add_representer(types.BuiltinFunctionType,
|
/external/pytorch/torch/fx/ |
D | operator_schemas.py | 300 if not isinstance(target, types.BuiltinFunctionType) and not (
|
/external/pytorch/test/ |
D | test_fx_experimental.py | 12 from types import BuiltinFunctionType 1133 if not isinstance(node.target, BuiltinFunctionType):
|
D | test_fx.py | 3954 if not isinstance(op.op, types.BuiltinFunctionType):
|
D | test_torch.py | 9727 types.BuiltinFunctionType, types.BuiltinMethodType)
|
/external/python/cpython3/Doc/library/ |
D | types.rst | 212 .. data:: BuiltinFunctionType
|
/external/pytorch/torch/_dynamo/variables/ |
D | user_defined.py | 948 subobj.fget, types.BuiltinFunctionType
|
D | misc.py | 1406 and isinstance(obj, (types.FunctionType, types.BuiltinFunctionType))
|
/external/pytorch/torch/_dynamo/ |
D | utils.py | 573 types.BuiltinFunctionType,
|