Home
last modified time | relevance | path

Searched refs:unify (Results 1 – 25 of 120) sorted by relevance

12345

/external/pytorch/torch/fx/experimental/unification/
Dcore.py68 s = unify(uu, vv, s)
100 def unify(u, v, s): # no check at the moment function
115 unify
118 def unify(u, v): function
119 return unify(u, v, {})
Dmore.py2 from .core import unify, reify # type: ignore[attr-defined]
108 return unify([getattr(u, slot) for slot in u.__slots__],
112 return unify(u.__dict__, v.__dict__, s)
118 return unify((u.start, u.stop, u.step), (v.start, v.stop, v.step), s)
Dmatch.py2 from .core import unify, reify # type: ignore[attr-defined]
27 s = unify(freeze(args), signature)
87 s = unify(a, b)
D__init__.py2 from .core import unify, reify # noqa: F403
/external/pytorch/aten/src/ATen/
DTensorNames.cpp12 const TensorName& TensorName::unify(const TensorName& other, const char* op_name) const { in unify() function in at::namedinference::TensorName
36 return other.unify(*this, op_name); in unify()
70 names_[idx] = names_[idx].unify(other.names_[idx - size_diff], op_name); in unifyFromRightInplace()
80 names_[idx] = names_[idx].unify(other.names_[idx], op_name); in unifyFromRightInplace()
DTensorNames.h37 const TensorName& unify(const TensorName& other, const char* op_name) const;
/external/llvm/include/llvm/CodeGen/
DLiveIntervalUnion.h87 void unify(LiveInterval &VirtReg, const LiveRange &Range);
88 void unify(LiveInterval &VirtReg) { in unify() function
89 unify(VirtReg, VirtReg); in unify()
/external/pytorch/aten/src/ATen/core/
DDimname.cpp60 std::optional<Dimname> Dimname::unify(Dimname other) const { in unify() function in at::Dimname
74 return unify(other).has_value(); in matches()
DDimname.h24 std::optional<Dimname> unify(Dimname other) const;
/external/pytorch/torch/fx/experimental/
Dunify_refinements.py4 from torch.fx.experimental.unification import Var, unify # type: ignore[attr-defined]
54 return unify(lhs, rhs)
/external/rust/android-crates-io/crates/maybe-async/
DMETADATA2 description: "A procedure macro to unify SYNC and ASYNC implementation"
DCargo.toml17 description = "A procedure macro to unify SYNC and ASYNC implementation"
/external/llvm/tools/llvm-diff/
DDifferenceEngine.cpp174 void unify(Instruction *L, Instruction *R) { in unify() function in __anon8fd41d530111::FunctionDifferenceEngine
220 unify(&*LI, &*RI); in diff()
557 unify(&*LI, &*RI); in runBlockDiff()
569 unify(L, R); in runBlockDiff()
593 unify(&*LI, &*RI); in runBlockDiff()
/external/mesa3d/src/compiler/glsl/
Dlower_jumps.cpp440 bool unify = true; in visit() local
449 unify = false; in visit()
451 if(unify) { in visit()
/external/libva-utils/
DNEWS10 * fix: unify the coding style
85 * code style:unify the code styles using the style_unify script
135 * unify NEWS format
/external/pytorch/docs/source/
Dnamed_tensor.rst101 ``unify(A, B)`` determines which of the names ``A`` and ``B`` to propagate to the outputs.
114 Let's see how ``match`` and ``unify`` are used in name inference in the case of
136 **Propagate names**: *unify* the names to select which one to propagate.
137 In the case of ``x + y``, ``unify('X', None) = 'X'`` because ``'X'`` is more
/external/pytorch/aten/src/ATen/test/
DDimname_test.cpp55 auto result = dimname1.unify(dimname2); in check_unify_and_match()
/external/llvm/test/Transforms/SimplifyCFG/
DUncondBranchToReturn.ll1 ; The unify-function-exit-nodes pass often makes basic blocks that just contain
/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/CodeGen/
DLiveIntervalUnion.h91 void unify(const LiveInterval &VirtReg, const LiveRange &Range);
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DLiveIntervalUnion.h91 void unify(LiveInterval &VirtReg, const LiveRange &Range);
/external/kmod/
DTODO27 * review API, maybe unify all of these getters:
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DLiveIntervalUnion.cpp29 void LiveIntervalUnion::unify(LiveInterval &VirtReg, const LiveRange &Range) { in unify() function in LiveIntervalUnion
/external/swiftshader/third_party/llvm-16.0/llvm/lib/CodeGen/
DLiveIntervalUnion.cpp29 void LiveIntervalUnion::unify(const LiveInterval &VirtReg, in unify() function in LiveIntervalUnion
/external/llvm/lib/CodeGen/
DLiveIntervalUnion.cpp29 void LiveIntervalUnion::unify(LiveInterval &VirtReg, const LiveRange &Range) { in unify() function in LiveIntervalUnion
DLiveRegMatrix.cpp106 Matrix[Unit].unify(VirtReg, Range); in assign()

12345