Home
last modified time | relevance | path

Searched refs:innermost (Results 1 – 25 of 136) sorted by relevance

123456

/external/llvm-project/llvm/test/Transforms/LoopUnroll/
Dinvalidate_right_loop.ll29 br label %innermost.loop
31 store.block: ; preds = %innermost.loop
40 innermost.loop: ; preds = %innermost.loop, %inner.loop
41 %tmp17 = phi i64 [ 0, %inner.loop ], [ %tmp20, %innermost.loop ]
42 %local_6_51 = phi i32 [ 1, %inner.loop ], [ %tmp21, %innermost.loop ]
47 br i1 %tmp22, label %store.block, label %innermost.loop
/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_MatrixDiagV2.pbtxt21 innermost dimension of `diagonal`.
29 k and the innermost dimension of `diagonal`.
50 and `num_cols` specify the dimension of the innermost matrix of the output. If
51 both are not specified, the op assumes the innermost matrix is square and infers
52 its size from `k` and the innermost dimension of `diagonal`. If only one of them
61 The second innermost dimension of `diagonal` has double meaning.
Dapi_def_MatrixDiagV3.pbtxt21 innermost dimension of `diagonal`.
29 k and the innermost dimension of `diagonal`.
62 and `num_cols` specify the dimension of the innermost matrix of the output. If
63 both are not specified, the op assumes the innermost matrix is square and infers
64 its size from `k` and the innermost dimension of `diagonal`. If only one of them
73 The second innermost dimension of `diagonal` has double meaning.
Dapi_def_MatrixTriangularSolve.pbtxt24 Boolean indicating whether the innermost matrices in `matrix` are
50 `True` then the innermost matrices in `output` satisfy matrix equations
52 If `adjoint` is `False` then the strictly then the innermost matrices in
Dapi_def_CholeskyGrad.pbtxt7 Algorithm depends only on lower triangular part of the innermost matrices of
15 Algorithm depends only on lower triangular part of the innermost matrices of
Dapi_def_SparseSoftmax.pbtxt33 This op is equivalent to applying the normal `tf.nn.softmax()` to each innermost
38 (1) Applies `tf.nn.softmax()` to a densified view of each innermost submatrix
Dapi_def_SparseMatrixSoftmax.pbtxt14 Calculate the softmax of the innermost dimensions of a SparseMatrix.
Dapi_def_Cross.pbtxt24 or any shape where the innermost dimension is 3. In the latter case, each pair
Dapi_def_MatrixSetDiag.pbtxt25 innermost matrices. These will be overwritten by the values in `diagonal`.
Dapi_def_CompareAndBitpack.pbtxt47 **NOTE**: Currently, the innermost dimension of the tensor must be divisible
Dapi_def_MatrixBandPart.pbtxt29 …summary: "Copy a tensor setting everything outside a central band in each innermost matrix to zero…
Dapi_def_TridiagonalSolve.pbtxt7 Tensor of shape `[..., 3, M]` whose innermost 2 dimensions represent the
Dapi_def_SparseMatrixMatMul.pbtxt54 where the transposition is performed along the two innermost (matrix)
/external/llvm-project/llvm/test/CodeGen/PowerPC/
Dloop-align.ll8 ; Test the loop alignment and the option -disable-ppc-innermost-loop-align32.
9 ; RUN: llc -verify-machineinstrs -mcpu=a2 -disable-ppc-innermost-loop-align32 -mtriple powerpc64le-…
10 ; RUN: llc -verify-machineinstrs -mcpu=pwr8 -disable-ppc-innermost-loop-align32 -mtriple powerpc64l…
11 ; RUN: llc -verify-machineinstrs -mcpu=pwr9 -disable-ppc-innermost-loop-align32 -mtriple powerpc64l…
12 ; RUN: llc -verify-machineinstrs -mcpu=pwr8 -disable-ppc-innermost-loop-align32 -mtriple powerpc64-…
13 ; RUN: llc -verify-machineinstrs -mcpu=pwr9 -disable-ppc-innermost-loop-align32 -mtriple powerpc64-…
18 ; Test the loop alignment when the innermost hot loop has more than 8 instructions.
76 ; Test the loop alignment when the innermost hot loop has 5-8 instructions.
122 ; Test the small loop alignment when the innermost hot loop has less than 4 instructions.
155 ; Test the loop alignment when the innermost cold loop has more than 8 instructions.
/external/apache-xml/src/main/java/org/apache/xml/utils/
DFastStringBuffer.java295 FastStringBuffer innermost = this; in reset() local
297 while (innermost.m_innerFSB != null) in reset()
299 innermost = innermost.m_innerFSB; in reset()
302 m_chunkBits = innermost.m_chunkBits; in reset()
303 m_chunkSize = innermost.m_chunkSize; in reset()
304 m_chunkMask = innermost.m_chunkMask; in reset()
/external/guava/android/guava-tests/test/com/google/common/collect/
DSynchronizedNavigableMapTest.java46 NavigableMap<K, V> innermost = in create() local
48 TestMap<K, V> inner = new TestMap<>(innermost, mutex); in create()
267 NavigableMap<String, String> innermost = new SafeTreeMap<>(); in suite()
269 innermost.put(entry.getKey(), entry.getValue()); in suite()
271 TestMap<String, String> inner = new TestMap<>(innermost, mutex); in suite()
DSynchronizedNavigableSetTest.java173 NavigableSet<String> innermost = new SafeTreeSet<>(); in suite()
174 Collections.addAll(innermost, elements); in suite()
175 TestSet<String> inner = new TestSet<>(innermost, MUTEX); in suite()
/external/guava/guava-tests/test/com/google/common/collect/
DSynchronizedNavigableMapTest.java46 NavigableMap<K, V> innermost = in create() local
48 TestMap<K, V> inner = new TestMap<>(innermost, mutex); in create()
267 NavigableMap<String, String> innermost = new SafeTreeMap<>(); in suite()
269 innermost.put(entry.getKey(), entry.getValue()); in suite()
271 TestMap<String, String> inner = new TestMap<>(innermost, mutex); in suite()
DSynchronizedNavigableSetTest.java173 NavigableSet<String> innermost = new SafeTreeSet<>(); in suite()
174 Collections.addAll(innermost, elements); in suite()
175 TestSet<String> inner = new TestSet<>(innermost, null); in suite()
/external/tensorflow/tensorflow/python/autograph/operators/
Dpy_builtins.py71 def _find_originating_frame(caller_fn_scope, innermost=True): argument
81 if innermost:
94 return _find_originating_frame(caller_fn_scope, innermost=True).f_locals
99 return _find_originating_frame(caller_fn_scope, innermost=True).f_globals
107 ctx_frame = _find_originating_frame(caller_fn_scope, innermost=True)
144 ctx_frame = _find_originating_frame(caller_fn_scope, innermost=False)
/external/llvm-project/polly/lib/External/isl/test_inputs/codegen/
Ddisjuncts.in1 # Check that conditions are hoisted up from the innermost loop
/external/clang/test/CodeGenObjC/
Ddebug-info-nested-blocks.m22 // innermost block.
/external/llvm-project/clang/test/CodeGenObjC/
Ddebug-info-nested-blocks.m22 // innermost block.
/external/gemmlowp/doc/
Dpacking.md26 [design.md](design.md): at the innermost level, one tries to work within
104 innermost GEMM loop in the depth dimension. That's the critical inner loop that
125 ## The innermost loop of the packing stage, PackRun, and PackingRegisterBlock
128 innermost loop is called PackRun().
/external/clang/test/SemaObjC/
Dnullability.m38 // expected-note@-1{{use nullability type specifier '_Nonnull' to affect the innermost pointer type…
44 // expected-note@-1{{use nullability type specifier '_Nullable' to affect the innermost pointer typ…
55 // expected-note@-1{{use nullability type specifier '_Nullable' to affect the innermost pointer typ…

123456