Searched refs:along (Results 1 – 25 of 1893) sorted by relevance
12345678910>>...76
/external/tensorflow/tensorflow/core/api_def/base_api/ |
D | api_def_Roll.pbtxt | 7 elements are shifted positively (towards larger indices) along the dimension 25 positively (towards larger indices) by the offsets of `shift` along the 29 summary: "Rolls the elements of a tensor along an axis." 32 `shift` along the dimension of `axis`. Negative `shift` values will shift 34 will wrap around to the first and vice versa. Multiple shifts along multiple 43 # shifting along multiple dimensions 47 # shifting along the same axis multiple times
|
D | api_def_SplitV.pbtxt | 12 list containing the sizes of each output tensor along the split 13 dimension. Must sum to the dimension of value along split_dim. 21 0-D. The dimension along which to split. Must be in the range 29 except along `split_dim`, where their sizes are 33 summary: "Splits a tensor into `num_split` tensors along one dimension."
|
D | api_def_SparseConcat.pbtxt | 42 Dimension to concatenate along. Must be in range [-rank, rank), 46 summary: "Concatenates a list of `SparseTensor` along the specified dimension." 50 along increasing dimension number. 55 The output shape is identical to the inputs', except along the concat 56 dimension, where it is the sum of the inputs' sizes along that dimension. 58 The output elements will be resorted to preserve the sort order along
|
D | api_def_UniqueV2.pbtxt | 19 A `Tensor`. Unique elements along the `axis` of `Tensor` x. 29 summary: "Finds unique elements along an axis of a tensor." 32 along the `axis` of a tensor. The returned unique elements is sorted 33 in the same order as they occur along `axis` in `x`. 35 the number of the elements in `x` along the `axis` dimension. It
|
D | api_def_ReverseSequence.pbtxt | 31 The dimension along which reversal is performed. 36 This op first slices `input` along the dimension `batch_dim`, and for each 37 slice `i`, reverses the first `seq_lengths[i]` elements along 43 The output slice `i` along dimension `batch_dim` is then given by input 44 slice `i`, with the first `seq_lengths[i]` slices along dimension
|
D | api_def_NthElement.pbtxt | 12 0-D. Position of sorted vector to select along the last dimension (along 19 The `n`-th order statistic along each last dimensional slice. 35 nth-smallest value in each row (resp. vector along the last dimension). Thus,
|
D | api_def_UniqueWithCountsV2.pbtxt | 19 A `Tensor`. Unique elements along the `axis` of `Tensor` x. 35 summary: "Finds unique elements along an axis of a tensor." 38 along the `axis` of a tensor. The returned unique elements is sorted 39 in the same order as they occur along `axis` in `x`. 41 that are the same size as the number of the elements in `x` along the
|
D | api_def_TopKV2.pbtxt | 15 0-D. Number of top elements to look for along the last dimension (along each 22 The `k` largest elements along each last dimensional slice. 45 row (resp. vector along the last dimension). Thus,
|
D | api_def_TopK.pbtxt | 12 The `k` largest elements along each last dimensional slice. 24 Number of top elements to look for along the last dimension (along each 42 row (resp. vector along the last dimension). Thus,
|
D | api_def_Concat.pbtxt | 7 0-D. The dimension along which to concatenate. Must be in the 21 A `Tensor` with the concatenation of values stacked along the 26 summary: "Concatenates tensors along one dimension."
|
D | api_def_Split.pbtxt | 7 0-D. The dimension along which to split. Must be in the range 21 except along `split_dim`, where their sizes are 32 summary: "Splits a tensor into `num_split` tensors along one dimension."
|
D | api_def_ConcatV2.pbtxt | 16 0-D. The dimension along which to concatenate. Must be in the 23 A `Tensor` with the concatenation of values stacked along the 28 summary: "Concatenates tensors along one dimension."
|
D | api_def_RandomShuffle.pbtxt | 12 A tensor of same shape and type as `value`, shuffled along its first 30 summary: "Randomly shuffles a tensor along its first dimension." 32 The tensor is shuffled along dimension 0, such that each `value[j]` is mapped
|
D | api_def_Unpack.pbtxt | 21 Dimension along which to unpack. Negative values wrap around, so the 27 Unpacks `num` tensors from `value` by chipping it along the `axis` dimension. 32 dimension unpacked along is gone, unlike `split`).
|
D | api_def_QuantizedConcat.pbtxt | 6 0-D. The dimension along which to concatenate. Must be in the 32 A `Tensor` with the concatenation of values stacked along the 49 summary: "Concatenates quantized tensors along one dimension."
|
D | api_def_Pack.pbtxt | 21 Dimension along which to pack. Negative values wrap around, so the 28 tensor in `values`, by packing them along the `axis` dimension. 41 pack([x, y, z]) => [[1, 4], [2, 5], [3, 6]] # Pack along first dim.
|
D | api_def_ParallelConcat.pbtxt | 23 summary: "Concatenates a list of `N` tensors along the first dimension." 33 parallel_concat([x, y, z]) => [[1, 4], [2, 5], [3, 6]] # Pack along first dim.
|
D | api_def_AllToAll.pbtxt | 51 On each replica, the input is split into `split_count` blocks along 54 blocks along `concat_dimension` as the output.
|
D | api_def_SparseSplit.pbtxt | 6 0-D. The dimension along which to split. Must be in the range 50 summary: "Split a `SparseTensor` into `num_split` tensors along one dimension."
|
/external/llvm-project/mlir/test/Transforms/ |
D | memref-bound-check.mlir | 20 // expected-error@-1 {{'affine.load' op memref out of upper bound access along dimension #1}} 21 // expected-error@-2 {{'affine.load' op memref out of lower bound access along dimension #1}} 22 // expected-error@-3 {{'affine.load' op memref out of upper bound access along dimension #2}} 23 // expected-error@-4 {{'affine.load' op memref out of lower bound access along dimension #2}} 34 …1 x i32> // expected-error {{'affine.load' op memref out of upper bound access along dimension #1}} 36 …x i32> // expected-error {{'affine.store' op memref out of lower bound access along dimension #1}} 52 // expected-error@-1 {{'affine.load' op memref out of upper bound access along dimension #1}} 53 // expected-error@-2 {{'affine.load' op memref out of upper bound access along dimension #2}} 54 // expected-error@-3 {{'affine.load' op memref out of upper bound access along dimension #3}} 58 … x i32> // expected-error {{'affine.store' op memref out of lower bound access along dimension #3}} [all …]
|
/external/python/cpython2/Doc/library/ |
D | cmath.rst | 50 cut for this operation lies along the negative real axis, 101 along the negative real axis to -∞, continuous from above. 124 1 along the real axis to ∞, continuous from below. The other extends left from 125 -1 along the real axis to -∞, continuous from above. 136 ``1j`` along the imaginary axis to ``∞j``, continuous from the right. The 137 other extends from ``-1j`` along the imaginary axis to ``-∞j``, continuous 165 extending left from 1 along the real axis to -∞, continuous from above. 171 One extends from ``1j`` along the imaginary axis to ``∞j``, 172 continuous from the right. The other extends from ``-1j`` along 182 extends from ``1`` along the real axis to ``∞``, continuous from below. The [all …]
|
/external/python/cpython3/Doc/library/ |
D | cmath.rst | 50 cut for this operation lies along the negative real axis, 96 along the negative real axis to -∞, continuous from above. 116 1 along the real axis to ∞, continuous from below. The other extends left from 117 -1 along the real axis to -∞, continuous from above. 128 ``1j`` along the imaginary axis to ``∞j``, continuous from the right. The 129 other extends from ``-1j`` along the imaginary axis to ``-∞j``, continuous 154 extending left from 1 along the real axis to -∞, continuous from above. 160 One extends from ``1j`` along the imaginary axis to ``∞j``, 161 continuous from the right. The other extends from ``-1j`` along 168 extends from ``1`` along the real axis to ``∞``, continuous from below. The [all …]
|
/external/grpc-grpc/src/python/grpcio_tests/tests/protoc_plugin/protos/requests/r/ |
D | test_requests.proto | 30 // input payload sent along with the request. 35 // input payload sent along with the request. 60 // input payload sent along with the request.
|
/external/llvm-project/llvm/test/Transforms/DCE/ |
D | basic.ll | 19 ; Check that lifetime intrinsics are removed along with the pointer. 32 ; Check that lifetime intrinsics are removed along with the pointer. 46 ; Check that lifetime intrinsics are removed along with the pointer.
|
/external/grpc-grpc/src/objective-c/examples/RemoteTestClient/ |
D | messages.proto | 53 // Optional input payload sent along with the request. 76 // Optional input payload sent along with the request. 110 // Optional input payload sent along with the request.
|
12345678910>>...76