/external/pytorch/torch/fx/experimental/unification/ |
D | core.py | 68 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, {})
|
D | more.py | 2 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)
|
D | match.py | 2 from .core import unify, reify # type: ignore[attr-defined] 27 s = unify(freeze(args), signature) 87 s = unify(a, b)
|
D | __init__.py | 2 from .core import unify, reify # noqa: F403
|
/external/pytorch/aten/src/ATen/ |
D | TensorNames.cpp | 12 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()
|
D | TensorNames.h | 37 const TensorName& unify(const TensorName& other, const char* op_name) const;
|
/external/llvm/include/llvm/CodeGen/ |
D | LiveIntervalUnion.h | 87 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/ |
D | Dimname.cpp | 60 std::optional<Dimname> Dimname::unify(Dimname other) const { in unify() function in at::Dimname 74 return unify(other).has_value(); in matches()
|
D | Dimname.h | 24 std::optional<Dimname> unify(Dimname other) const;
|
/external/pytorch/torch/fx/experimental/ |
D | unify_refinements.py | 4 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/ |
D | METADATA | 2 description: "A procedure macro to unify SYNC and ASYNC implementation"
|
D | Cargo.toml | 17 description = "A procedure macro to unify SYNC and ASYNC implementation"
|
/external/llvm/tools/llvm-diff/ |
D | DifferenceEngine.cpp | 174 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/ |
D | lower_jumps.cpp | 440 bool unify = true; in visit() local 449 unify = false; in visit() 451 if(unify) { in visit()
|
/external/libva-utils/ |
D | NEWS | 10 * 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/ |
D | named_tensor.rst | 101 ``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/ |
D | Dimname_test.cpp | 55 auto result = dimname1.unify(dimname2); in check_unify_and_match()
|
/external/llvm/test/Transforms/SimplifyCFG/ |
D | UncondBranchToReturn.ll | 1 ; The unify-function-exit-nodes pass often makes basic blocks that just contain
|
/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/CodeGen/ |
D | LiveIntervalUnion.h | 91 void unify(const LiveInterval &VirtReg, const LiveRange &Range);
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
D | LiveIntervalUnion.h | 91 void unify(LiveInterval &VirtReg, const LiveRange &Range);
|
/external/kmod/ |
D | TODO | 27 * review API, maybe unify all of these getters:
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | LiveIntervalUnion.cpp | 29 void LiveIntervalUnion::unify(LiveInterval &VirtReg, const LiveRange &Range) { in unify() function in LiveIntervalUnion
|
/external/swiftshader/third_party/llvm-16.0/llvm/lib/CodeGen/ |
D | LiveIntervalUnion.cpp | 29 void LiveIntervalUnion::unify(const LiveInterval &VirtReg, in unify() function in LiveIntervalUnion
|
/external/llvm/lib/CodeGen/ |
D | LiveIntervalUnion.cpp | 29 void LiveIntervalUnion::unify(LiveInterval &VirtReg, const LiveRange &Range) { in unify() function in LiveIntervalUnion
|
D | LiveRegMatrix.cpp | 106 Matrix[Unit].unify(VirtReg, Range); in assign()
|