• Home
  • Raw
  • Download

Lines Matching refs:constant

6     // CHECK: spv.constant true
7 %0 = spv.constant true
8 // CHECK: spv.constant false
9 %1 = spv.constant false
18 // CHECK: spv.constant 0 : i32
19 %0 = spv.constant 0 : i32
20 // CHECK: spv.constant 10 : i32
21 %1 = spv.constant 10 : i32
22 // CHECK: spv.constant -5 : i32
23 %2 = spv.constant -5 : i32
32 // CHECK: spv.constant 0 : si32
33 %0 = spv.constant 0 : si32
34 // CHECK: spv.constant 10 : si32
35 %1 = spv.constant 10 : si32
36 // CHECK: spv.constant -5 : si32
37 %2 = spv.constant -5 : si32
49 // CHECK: spv.constant 0 : i32
50 %0 = spv.constant 0 : ui32
51 // CHECK: spv.constant 10 : i32
52 %1 = spv.constant 10 : ui32
53 // CHECK: spv.constant -5 : i32
54 %2 = spv.constant 4294967291 : ui32
63 // CHECK: spv.constant 4294967296 : i64
64 %0 = spv.constant 4294967296 : i64 // 2^32
65 // CHECK: spv.constant -4294967296 : i64
66 %1 = spv.constant -4294967296 : i64 // -2^32
67 // CHECK: spv.constant 9223372036854775807 : i64
68 %2 = spv.constant 9223372036854775807 : i64 // 2^63 - 1
69 // CHECK: spv.constant -9223372036854775808 : i64
70 %3 = spv.constant -9223372036854775808 : i64 // -2^63
79 // CHECK: spv.constant -32768 : i16
80 %0 = spv.constant -32768 : i16 // -2^15
81 // CHECK: spv.constant 32767 : i16
82 %1 = spv.constant 32767 : i16 // 2^15 - 1
90 // CHECK: spv.constant 0.000000e+00 : f32
91 %0 = spv.constant 0. : f32
92 // CHECK: spv.constant 1.000000e+00 : f32
93 %1 = spv.constant 1. : f32
94 // CHECK: spv.constant -0.000000e+00 : f32
95 %2 = spv.constant -0. : f32
96 // CHECK: spv.constant -1.000000e+00 : f32
97 %3 = spv.constant -1. : f32
98 // CHECK: spv.constant 7.500000e-01 : f32
99 %4 = spv.constant 0.75 : f32
100 // CHECK: spv.constant -2.500000e-01 : f32
101 %5 = spv.constant -0.25 : f32
112 // CHECK: spv.constant 1.024000e+03 : f64
113 %0 = spv.constant 1024. : f64
114 // CHECK: spv.constant -1.024000e+03 : f64
115 %1 = spv.constant -1024. : f64
123 // CHECK: spv.constant 5.120000e+02 : f16
124 %0 = spv.constant 512. : f16
125 // CHECK: spv.constant -5.120000e+02 : f16
126 %1 = spv.constant -512. : f16
134 // CHECK: spv.constant dense<false> : vector<2xi1>
135 %0 = spv.constant dense<false> : vector<2xi1>
136 // CHECK: spv.constant dense<[true, true, true]> : vector<3xi1>
137 %1 = spv.constant dense<true> : vector<3xi1>
138 // CHECK: spv.constant dense<[false, true]> : vector<2xi1>
139 %2 = spv.constant dense<[false, true]> : vector<2xi1>
149 // CHECK: spv.constant dense<0> : vector<3xi32>
150 %0 = spv.constant dense<0> : vector<3xi32>
151 // CHECK: spv.constant dense<1> : vector<3xi32>
152 %1 = spv.constant dense<1> : vector<3xi32>
153 // CHECK: spv.constant dense<[2, -3, 4]> : vector<3xi32>
154 %2 = spv.constant dense<[2, -3, 4]> : vector<3xi32>
163 // CHECK: spv.constant dense<0.000000e+00> : vector<4xf32>
164 %0 = spv.constant dense<0.> : vector<4xf32>
165 // CHECK: spv.constant dense<-1.500000e+01> : vector<4xf32>
166 %1 = spv.constant dense<-15.> : vector<4xf32>
167 …// CHECK: spv.constant dense<[7.500000e-01, -2.500000e-01, 1.000000e+01, 4.200000e+01]> : vector<4…
168 %2 = spv.constant dense<[0.75, -0.25, 10., 42.]> : vector<4xf32>
177 // CHECK: spv.constant [5, 6, 7] : !spv.array<3 x i64>
178 %0 = spv.constant [5 : ui64, 6 : ui64, 7 : ui64] : !spv.array<3 x ui64>
185 // CHECK: spv.constant [5 : si32, 6 : si32, 7 : si32] : !spv.array<3 x si32>
186 %0 = spv.constant [5 : si32, 6 : si32, 7 : si32] : !spv.array<3 x si32>
192 …// CHECK: spv.constant [dense<3.000000e+00> : vector<2xf32>, dense<[4.000000e+00, 5.000000e+00]> :…
193 …%0 = spv.constant [dense<3.0> : vector<2xf32>, dense<[4., 5.]> : vector<2xf32>] : !spv.array<2 x v…
200 %0 = spv.constant false
207 // CHECK: %[[USE1:.*]] = spv.constant 42 : i32
208 // CHECK: %[[USE2:.*]] = spv.constant 42 : i32
210 %0 = spv.constant 42 : i32
217 // CHECK: %[[CONST:.*]] = spv.constant 5 : i32
221 %1 = spv.constant 5 : i32
230 …// CHECK: spv.constant {{\[}}{{\[}}[1 : i32, 2 : i32, 3 : i32], [4 : i32, 5 : i32, 6 : i32]], {{\[…
231 …%0 = spv.constant dense<[[[1, 2, 3], [4, 5, 6]], [[7, 8, 9], [10, 11, 12]]]> : tensor<2x2x3xi32> :…
237 …// CHECK: spv.constant {{\[}}{{\[}}[1 : i32, 1 : i32, 1 : i32], [1 : i32, 1 : i32, 1 : i32]], {{\[…
238 …%0 = spv.constant dense<1> : tensor<2x2x3xi32> : !spv.array<2 x !spv.array<2 x !spv.array<3 x i32,…