Home
last modified time | relevance | path

Searched refs:slicing (Results 1 – 25 of 107) sorted by relevance

12345

/external/llvm-project/mlir/test/Dialect/Affine/
Dslicing-utils.mlir1 // 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/
Dcppcoreguidelines-slicing.rst1 .. 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:
Dmisc-throw-by-value-catch-by-reference.rst17 are not susceptible to slicing and the usage of string literals is idomatic.
/external/tensorflow/tensorflow/compiler/xla/client/lib/
DBUILD189 ":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/tensorflow/tensorflow/python/ops/
Dpartitioned_variables.py245 shape, slicing, initializer, dtype=dtypes.float32, argument
288 if len(shape) != len(slicing):
291 (shape, slicing))
298 partitioner = lambda **unused_kwargs: slicing
Dvariable_scope.py2540 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/eigen/bench/tensors/
Dtensor_benchmarks_cpu.cc33 BM_FuncCPU(slicing, 4);
34 BM_FuncCPU(slicing, 8);
35 BM_FuncCPU(slicing, 12);
Dtensor_benchmarks_fp16_gpu.cu24 BM_FuncGPU(slicing);
Dtensor_benchmarks_gpu.cu24 BM_FuncGPU(slicing);
/external/starlark-go/starlark/testdata/
Dtuple.star23 # slicing, x[i:j]
/external/tensorflow/tensorflow/lite/g3doc/convert/
Drnn.md173 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/llvm-project/mlir/test/Transforms/
Dloop-fusion-slice-computation.mlir69 // 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/python/cpython2/Doc/c-api/
Dlist.rst151 to ``list[low:high]``. Negative indices, as when slicing from Python, are not
165 slicing from Python, are not supported.
/external/python/cpython2/Doc/library/
Dconstants.rst41 Special value used in conjunction with extended slicing syntax.
/external/python/cpython2/Doc/reference/
Dexpressions.rst527 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 …]
Dsimple_stmts.rst93 : | `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/
Dintroduction.rst264 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/
Dmapping.rst14 Return ``1`` if the object provides mapping protocol or supports slicing,
/external/python/cpython3/Doc/library/
Dconstants.rst63 with extended slicing syntax for user-defined container data types.
/external/python/cpython3/Doc/reference/
Dsimple_stmts.rst93 : | `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
Dexpressions.rst754 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/python/cpython2/Doc/tutorial/
Dintroduction.rst264 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/tensorflow/tensorflow/lite/experimental/microfrontend/
DREADME.md21 1. A slicing window function
/external/tensorflow/tensorflow/lite/micro/kernels/arc_mli/
DREADME.md77 quite big and may not fit in available XY memory, special slicing logic is
/external/python/pybind11/docs/advanced/
Dmisc.rst95 Binding sequence data types, iterators, the slicing protocol, etc.
104 length queries (``__len__``), iterators (``__iter__``), the slicing

12345