/external/llvm-project/mlir/test/Dialect/Affine/ |
D | slicing-utils.mlir | 1 // RUN: mlir-opt -allow-unregistered-dialect %s -affine-super-vectorizer-test -forward-slicing=true… 2 // RUN: mlir-opt -allow-unregistered-dialect %s -affine-super-vectorizer-test -backward-slicing=tru… 3 // RUN: mlir-opt -allow-unregistered-dialect %s -affine-super-vectorizer-test -slicing=true 2>&1 | … 31 // FWDBWD-DAG: %[[v4:.*]] = "slicing-test-op"() : () -> i4 32 // FWDBWD-DAG: %[[v3:.*]] = "slicing-test-op"() : () -> i3 33 // FWDBWD-NEXT: %[[v6:.*]] = "slicing-test-op"(%[[v3]], %[[v4]]) : (i3, i4) -> i6 34 // FWDBWD-DAG: %[[v2:.*]] = "slicing-test-op"() : () -> i2 35 // FWDBWD-DAG: %[[v1:.*]] = "slicing-test-op"() : () -> i1 36 // FWDBWD-NEXT: %[[v5:.*]] = "slicing-test-op"(%[[v1]], %[[v2]]) : (i1, i2) -> i5 37 // FWDBWD-DAG: %[[v8:.*]] = "slicing-test-op"(%[[v5]], %[[v6]]) : (i5, i6) -> i8 [all …]
|
/external/llvm-project/clang-tools-extra/docs/clang-tidy/checks/ |
D | cppcoreguidelines-slicing.rst | 1 .. title:: clang-tidy - cppcoreguidelines-slicing 3 cppcoreguidelines-slicing 6 Flags slicing of member variables or vtable. Slicing happens when copying a 9 misleading especially for member function slicing, for example:
|
D | misc-throw-by-value-catch-by-reference.rst | 17 are not susceptible to slicing and the usage of string literals is idomatic.
|
/external/tensorflow/tensorflow/python/ops/ |
D | partitioned_variables.py | 245 shape, slicing, initializer, dtype=dtypes.float32, argument 288 if len(shape) != len(slicing): 291 (shape, slicing)) 298 partitioner = lambda **unused_kwargs: slicing
|
D | variable_scope.py | 2540 slicing = partitioner(shape=shape, dtype=dtype) 2541 if not isinstance(slicing, collections_abc.Sequence): 2543 slicing) 2544 if len(slicing) != shape.ndims: 2547 "Variable's rank: %s vs. %s" % (slicing, shape)) 2548 if any(p < 1 for p in slicing): 2550 slicing) 2551 if sum(p > 1 for p in slicing) > 1: 2553 "shape: %s, partitioning: %s" % (shape, slicing)) 2554 return slicing [all …]
|
/external/tensorflow/tensorflow/compiler/xla/client/lib/ |
D | BUILD | 189 ":slicing", 214 ":slicing", 279 ":slicing", 327 name = "slicing", 328 srcs = ["slicing.cc"], 329 hdrs = ["slicing.h"], 344 ":slicing", 365 ":slicing", 453 ":slicing", 505 ":slicing", [all …]
|
/external/eigen/bench/tensors/ |
D | tensor_benchmarks_cpu.cc | 33 BM_FuncCPU(slicing, 4); 34 BM_FuncCPU(slicing, 8); 35 BM_FuncCPU(slicing, 12);
|
D | tensor_benchmarks_fp16_gpu.cu | 24 BM_FuncGPU(slicing);
|
D | tensor_benchmarks_gpu.cu | 24 BM_FuncGPU(slicing);
|
/external/starlark-go/starlark/testdata/ |
D | tuple.star | 23 # slicing, x[i:j]
|
/external/llvm-project/mlir/test/Transforms/ |
D | loop-fusion-slice-computation.mlir | 69 // The load at depth 1 in loop nest %i2 prevents slicing loop nest %i0 at depths 96 // The store at depth 1 in loop nest %i0 prevents slicing loop nest %i2 at
|
/external/tensorflow/tensorflow/lite/g3doc/convert/ |
D | rnn.md | 173 gate}** are extracted by slicing the transposed weight tensor. 176 extracted by slicing the bias tensor. 178 1. The **projection** is extracted by slicing the transposed projection tensor.
|
/external/python/cpython2/Doc/library/ |
D | constants.rst | 41 Special value used in conjunction with extended slicing syntax.
|
/external/python/cpython2/Doc/c-api/ |
D | list.rst | 151 to ``list[low:high]``. Negative indices, as when slicing from Python, are not 165 slicing from Python, are not supported.
|
/external/python/cpython2/Doc/reference/ |
D | expressions.rst | 527 primary: `atom` | `attributeref` | `subscription` | `slicing` | `call` 605 single: slicing 614 A slicing selects a range of items in a sequence object (e.g., a string, tuple 616 :keyword:`del` statements. The syntax for a slicing: 619 slicing: `simple_slicing` | `extended_slicing` 632 .. index:: pair: extended; slicing 636 interpreted as a slicing. Rather than further complicating the syntax, this is 638 takes priority over the interpretation as a slicing (this is the case if the 641 simple slicing takes priority over that as an extended slicing. 643 The semantics for a simple slicing are as follows. The primary must evaluate to [all …]
|
D | simple_stmts.rst | 93 : | `slicing` 111 or slicing), the mutable object must ultimately perform the assignment and 206 .. index:: pair: slicing; assignment 208 * If the target is a slicing: The primary expression in the reference is 263 augtarget: `identifier` | `attributeref` | `subscription` | `slicing` 389 primary object involved; deletion of a slicing is in general equivalent to
|
/external/python/cpython3/Doc/tutorial/ |
D | introduction.rst | 264 In addition to indexing, *slicing* is also supported. While indexing is used 265 to obtain individual characters, *slicing* allows you to obtain substring:: 318 slicing:: 393 >>> squares[-3:] # slicing returns a new list
|
/external/python/cpython3/Doc/c-api/ |
D | mapping.rst | 14 Return ``1`` if the object provides mapping protocol or supports slicing,
|
/external/python/cpython3/Doc/library/ |
D | constants.rst | 63 with extended slicing syntax for user-defined container data types.
|
/external/tensorflow/tensorflow/lite/experimental/microfrontend/ |
D | README.md | 21 1. A slicing window function
|
/external/python/cpython2/Doc/tutorial/ |
D | introduction.rst | 264 In addition to indexing, *slicing* is also supported. While indexing is used 265 to obtain individual characters, *slicing* allows you to obtain a substring:: 318 slicing:: 487 >>> squares[-3:] # slicing returns a new list
|
/external/python/cpython3/Doc/reference/ |
D | simple_stmts.rst | 93 : | `slicing` 97 *subscription*, and *slicing*.) 110 or slicing), the mutable object must ultimately perform the assignment and 221 .. index:: pair: slicing; assignment 223 * If the target is a slicing: The primary expression in the reference is 285 augtarget: `identifier` | `attributeref` | `subscription` | `slicing` 470 primary object involved; deletion of a slicing is in general equivalent to
|
D | expressions.rst | 754 primary: `atom` | `attributeref` | `subscription` | `slicing` | `call` 829 (counting from zero). Since the support for negative indices and slicing 852 single: slicing 854 single: : (colon); slicing 855 single: , (comma); slicing 863 A slicing selects a range of items in a sequence object (e.g., a string, tuple 865 :keyword:`del` statements. The syntax for a slicing: 868 slicing: `primary` "[" `slice_list` "]" 878 interpreted as a slicing. Rather than further complicating the syntax, this is 880 takes priority over the interpretation as a slicing (this is the case if the [all …]
|
/external/tensorflow/tensorflow/lite/micro/kernels/arc_mli/ |
D | README.md | 77 quite big and may not fit in available XY memory, special slicing logic is
|
/external/python/pybind11/docs/advanced/ |
D | misc.rst | 95 Binding sequence data types, iterators, the slicing protocol, etc. 104 length queries (``__len__``), iterators (``__iter__``), the slicing
|