Home
last modified time | relevance | path

Searched refs:const_size (Results 1 – 10 of 10) sorted by relevance

/llvm-project-15.0.7/mlir/test/Dialect/Shape/
H A Dops.mlir8 %init = shape.const_size 1
156 func.func @const_size() {
157 // CHECK: %c1 = shape.const_size 1
158 // CHECK: %c2 = shape.const_size 2
160 %0 = shape.const_size 1
161 %1 = shape.const_size 2
162 %2 = shape.const_size 2
207 %c0 = shape.const_size 0
220 %c0 = shape.const_size 0
314 %0 = shape.const_size 5
[all …]
H A Dcanonicalize.mlir228 %e0 = shape.const_size 3
229 %e1 = shape.const_size 5
250 %cs = shape.const_size 123
369 %c2 = shape.const_size 2
382 %c3 = shape.const_size 3
393 %c3 = shape.const_size 3
1100 %c2 = shape.const_size 2
1101 %c3 = shape.const_size 3
1113 %c2 = shape.const_size 2
1114 %c3 = shape.const_size 3
[all …]
H A Dshape-to-shape.mlir9 // CHECK: [[C1:%.*]] = shape.const_size 1
H A Dinvalid.mlir117 %c0 = shape.const_size 0
/llvm-project-15.0.7/flang/test/Semantics/
H A Dio03.f9015 integer, parameter :: junit = 11, const_size = 13, const_int = 15 variable
71 read(11, pos=ipos, size=const_size, end=9)
/llvm-project-15.0.7/mlir/docs/Dialects/
H A DShapeDialect.md38 %c1 = shape.const_size 1
39 %c2 = shape.const_size 2
101 %c1 = shape.const_size 1
102 %c2 = shape.const_size 2
140 %c1 = shape.const_size 1
141 %c2 = shape.const_size 2
/llvm-project-15.0.7/pstl/test/std/algorithms/alg.nonmodifying/
H A Dadjacent_find.pass.cpp44 for (size_t c = 0; c < const_size(counts); ++c) in test_adjacent_find_by_type()
/llvm-project-15.0.7/mlir/test/Conversion/ShapeToStandard/
H A Dshape-to-standard.mlir143 // Lower 'const_size` to `arith.constant`
144 // CHECK-LABEL: @const_size
145 func.func @const_size() -> index {
147 %size = shape.const_size 42
/llvm-project-15.0.7/mlir/include/mlir/Dialect/Shape/IR/
H A DShapeOps.td137 def Shape_ConstSizeOp : Shape_Op<"const_size", [
147 %x = shape.const_size 10
/llvm-project-15.0.7/pstl/test/support/
H A Dutils.h33 const_size(const T (&)[N]) noexcept in const_size() function