e1176711a0e986d53fb6e0427f0bbd91bdf7dd1b
[mesa.git] / src / panfrost / bifrost / test / bi_test_pack.c
1 /*
2 * Copyright (C) 2020 Collabora Ltd.
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 * SOFTWARE.
22 *
23 * Authors (Collabora):
24 * Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
25 */
26
27 #include "bit.h"
28 #include "bi_print.h"
29 #include "util/half_float.h"
30 #include "bifrost/disassemble.h"
31
32 /* Instruction packing tests */
33
34 static bool
35 bit_test_single(struct panfrost_device *dev,
36 bi_instruction *ins,
37 uint32_t input[4],
38 bool fma, enum bit_debug debug)
39 {
40 /* First, simulate the instruction */
41 struct bit_state s = { 0 };
42 memcpy(s.r, input, 16);
43 bit_step(&s, ins, fma);
44
45 /* Next, wrap it up and pack it */
46
47 bi_instruction ldubo = {
48 .type = BI_LOAD_UNIFORM,
49 .src = {
50 BIR_INDEX_CONSTANT,
51 BIR_INDEX_ZERO
52 },
53 .src_types = {
54 nir_type_uint32,
55 nir_type_uint32,
56 },
57 .dest = BIR_INDEX_REGISTER | 0,
58 .dest_type = nir_type_uint32,
59 .vector_channels = 4,
60 };
61
62 bi_instruction ldva = {
63 .type = BI_LOAD_VAR_ADDRESS,
64 .vector_channels = 3,
65 .dest = BIR_INDEX_REGISTER | 32,
66 .dest_type = nir_type_uint32,
67 .src = {
68 BIR_INDEX_CONSTANT,
69 BIR_INDEX_REGISTER | 61,
70 BIR_INDEX_REGISTER | 62,
71 0,
72 },
73 .src_types = {
74 nir_type_uint32,
75 nir_type_uint32,
76 nir_type_uint32,
77 nir_type_uint32,
78 }
79 };
80
81 bi_instruction st = {
82 .type = BI_STORE_VAR,
83 .src = {
84 BIR_INDEX_REGISTER | 0,
85 ldva.dest, ldva.dest + 1, ldva.dest + 2,
86 },
87 .src_types = {
88 nir_type_uint32,
89 nir_type_uint32, nir_type_uint32, nir_type_uint32,
90 },
91 .vector_channels = 4
92 };
93
94 bi_context *ctx = rzalloc(NULL, bi_context);
95 ctx->stage = MESA_SHADER_VERTEX;
96
97 bi_block *blk = rzalloc(ctx, bi_block);
98 blk->scheduled = true;
99
100 blk->base.predecessors = _mesa_set_create(blk,
101 _mesa_hash_pointer,
102 _mesa_key_pointer_equal);
103
104 list_inithead(&ctx->blocks);
105 list_addtail(&blk->base.link, &ctx->blocks);
106 list_inithead(&blk->clauses);
107
108 bi_clause *clauses[4] = {
109 rzalloc(ctx, bi_clause),
110 rzalloc(ctx, bi_clause),
111 rzalloc(ctx, bi_clause),
112 rzalloc(ctx, bi_clause)
113 };
114
115 for (unsigned i = 0; i < 4; ++i) {
116 clauses[i]->bundle_count = 1;
117 list_addtail(&clauses[i]->link, &blk->clauses);
118 clauses[i]->scoreboard_id = (i & 1);
119
120 if (i) {
121 clauses[i]->dependencies = 1 << (~i & 1);
122 clauses[i]->data_register_write_barrier = true;
123 }
124 }
125
126 clauses[0]->bundles[0].add = &ldubo;
127 clauses[0]->clause_type = BIFROST_CLAUSE_UBO;
128
129 if (fma)
130 clauses[1]->bundles[0].fma = ins;
131 else
132 clauses[1]->bundles[0].add = ins;
133
134 clauses[0]->constant_count = 1;
135 clauses[1]->constant_count = 1;
136 clauses[1]->constants[0] = ins->constant.u64;
137
138 clauses[2]->bundles[0].add = &ldva;
139 clauses[3]->bundles[0].add = &st;
140
141 clauses[2]->clause_type = BIFROST_CLAUSE_UBO;
142 clauses[3]->clause_type = BIFROST_CLAUSE_SSBO_STORE;
143
144 panfrost_program prog;
145 bi_pack(ctx, &prog.compiled);
146
147 bool succ = bit_vertex(dev, prog, input, 16, NULL, 0,
148 s.r, 16, debug);
149
150 if (debug >= BIT_DEBUG_ALL || (!succ && debug >= BIT_DEBUG_FAIL)) {
151 bi_print_shader(ctx, stderr);
152 disassemble_bifrost(stderr, prog.compiled.data, prog.compiled.size, true);
153 }
154
155 return succ;
156 }
157
158 /* Utilities for generating tests */
159
160 static void
161 bit_generate_float4(float *mem)
162 {
163 for (unsigned i = 0; i < 4; ++i)
164 mem[i] = (float) ((rand() & 255) - 127) / 16.0;
165 }
166
167 static void
168 bit_generate_half8(uint16_t *mem)
169 {
170 for (unsigned i = 0; i < 8; ++i)
171 mem[i] = _mesa_float_to_half(((float) (rand() & 255) - 127) / 16.0);
172 }
173
174 static bi_instruction
175 bit_ins(enum bi_class C, unsigned argc, nir_alu_type base, unsigned size)
176 {
177 nir_alu_type T = base | size;
178
179 bi_instruction ins = {
180 .type = C,
181 .dest = BIR_INDEX_REGISTER | 0,
182 .dest_type = T,
183 };
184
185 for (unsigned i = 0; i < argc; ++i) {
186 ins.src[i] = BIR_INDEX_REGISTER | i;
187 ins.src_types[i] = T;
188 }
189
190 return ins;
191 }
192
193 /* Tests all 64 combinations of floating point modifiers for a given
194 * instruction / floating-type / test type */
195
196 static void
197 bit_fmod_helper(struct panfrost_device *dev,
198 enum bi_class c, unsigned size, bool fma,
199 uint32_t *input, enum bit_debug debug, unsigned op)
200 {
201 bi_instruction ins = bit_ins(c, 2, nir_type_float, size);
202
203 bool fp16 = (size == 16);
204 bool has_outmods = fma || !fp16;
205
206 for (unsigned outmod = 0; outmod < (has_outmods ? 4 : 1); ++outmod) {
207 for (unsigned inmod = 0; inmod < 16; ++inmod) {
208 ins.outmod = outmod;
209 ins.op.minmax = op;
210 ins.src_abs[0] = (inmod & 0x1);
211 ins.src_abs[1] = (inmod & 0x2);
212 ins.src_neg[0] = (inmod & 0x4);
213 ins.src_neg[1] = (inmod & 0x8);
214
215 /* Skip over tests that cannot run */
216 if ((fma || c == BI_MINMAX) && fp16 && ins.src_abs[0] && ins.src_abs[1])
217 continue;
218
219 if (!bit_test_single(dev, &ins, input, fma, debug)) {
220 fprintf(stderr, "FAIL: fmod.%s%u.%s%s.%u\n",
221 bi_class_name(c),
222 size,
223 fma ? "fma" : "add",
224 outmod ? bi_output_mod_name(outmod) : ".none",
225 inmod);
226 }
227 }
228 }
229 }
230
231 static void
232 bit_fma_helper(struct panfrost_device *dev,
233 unsigned size, uint32_t *input, enum bit_debug debug)
234 {
235 bi_instruction ins = bit_ins(BI_FMA, 3, nir_type_float, size);
236
237 for (unsigned outmod = 0; outmod < 4; ++outmod) {
238 for (unsigned inmod = 0; inmod < 8; ++inmod) {
239 ins.outmod = outmod;
240 ins.src_neg[0] = (inmod & 0x1);
241 ins.src_neg[1] = (inmod & 0x2);
242 ins.src_neg[2] = (inmod & 0x4);
243
244 if (!bit_test_single(dev, &ins, input, true, debug)) {
245 fprintf(stderr, "FAIL: fma%u%s.%u\n",
246 size,
247 outmod ? bi_output_mod_name(outmod) : ".none",
248 inmod);
249 }
250 }
251 }
252 }
253
254 static void
255 bit_fma_mscale_helper(struct panfrost_device *dev, uint32_t *input, enum bit_debug debug)
256 {
257 bi_instruction ins = bit_ins(BI_FMA, 4, nir_type_float, 32);
258 ins.op.mscale = true;
259 ins.src_types[3] = nir_type_int32;
260 ins.src[2] = ins.src[3]; /* Not enough ports! */
261
262 for (unsigned outmod = 0; outmod < 4; ++outmod) {
263 for (unsigned inmod = 0; inmod < 8; ++inmod) {
264 ins.outmod = outmod;
265 ins.src_abs[0] = (inmod & 0x1);
266 ins.src_neg[1] = (inmod & 0x2);
267 ins.src_neg[2] = (inmod & 0x4);
268
269 if (!bit_test_single(dev, &ins, input, true, debug)) {
270 fprintf(stderr, "FAIL: fma_mscale%s.%u\n",
271 outmod ? bi_output_mod_name(outmod) : ".none",
272 inmod);
273 }
274 }
275 }
276 }
277
278 static void
279 bit_csel_helper(struct panfrost_device *dev,
280 unsigned size, uint32_t *input, enum bit_debug debug)
281 {
282 bi_instruction ins = bit_ins(BI_CSEL, 4, nir_type_uint, size);
283
284 /* SCHEDULER: We can only read 3 registers at once. */
285 ins.src[2] = ins.src[0];
286
287 for (enum bi_cond cond = BI_COND_LT; cond <= BI_COND_NE; ++cond) {
288 ins.cond = cond;
289
290 if (!bit_test_single(dev, &ins, input, true, debug)) {
291 fprintf(stderr, "FAIL: csel%u.%s\n",
292 size, bi_cond_name(cond));
293 }
294 }
295 }
296
297 static void
298 bit_special_helper(struct panfrost_device *dev,
299 unsigned size, uint32_t *input, enum bit_debug debug)
300 {
301 bi_instruction ins = bit_ins(BI_SPECIAL, 2, nir_type_float, size);
302 uint32_t exp_input[4];
303
304 for (enum bi_special_op op = BI_SPECIAL_FRCP; op <= BI_SPECIAL_EXP2_LOW; ++op) {
305 if (op == BI_SPECIAL_EXP2_LOW) {
306 /* exp2 only supported in fp32 mode */
307 if (size != 32)
308 continue;
309
310 /* Give expected input */
311 exp_input[1] = input[0];
312 float *ff = (float *) input;
313 exp_input[0] = (int) (ff[0] * (1 << 24));
314 }
315
316 for (unsigned c = 0; c < ((size == 16) ? 2 : 1); ++c) {
317 ins.op.special = op;
318 ins.swizzle[0][0] = c;
319
320 if (!bit_test_single(dev, &ins,
321 op == BI_SPECIAL_EXP2_LOW ? exp_input : input,
322 false, debug)) {
323 fprintf(stderr, "FAIL: special%u.%s\n",
324 size, bi_special_op_name(op));
325 }
326 }
327 }
328 }
329
330 static void
331 bit_table_helper(struct panfrost_device *dev, uint32_t *input, enum bit_debug debug)
332 {
333 bi_instruction ins = bit_ins(BI_TABLE, 1, nir_type_float, 32);
334
335 for (enum bi_table_op op = 0; op <= BI_TABLE_LOG2_U_OVER_U_1_LOW; ++op) {
336 ins.op.table = op;
337
338 if (!bit_test_single(dev, &ins, input, false, debug)) {
339 fprintf(stderr, "FAIL: table.%s\n",
340 bi_table_op_name(op));
341 }
342 }
343 }
344
345 static void
346 bit_frexp_helper(struct panfrost_device *dev, uint32_t *input, enum bit_debug debug)
347 {
348 bi_instruction ins = bit_ins(BI_FREXP, 1, nir_type_float, 32);
349 ins.dest_type = nir_type_int32;
350
351 for (enum bi_frexp_op op = 0; op <= BI_FREXPE_LOG; ++op) {
352 ins.op.frexp = op;
353
354 if (!bit_test_single(dev, &ins, input, true, debug)) {
355 fprintf(stderr, "FAIL: frexp.%s\n",
356 bi_frexp_op_name(op));
357 }
358 }
359 }
360
361 static void
362 bit_round_helper(struct panfrost_device *dev, uint32_t *input, unsigned sz, bool FMA, enum bit_debug debug)
363 {
364 bi_instruction ins = bit_ins(BI_ROUND, 1, nir_type_float, sz);
365
366 for (enum bifrost_roundmode mode = 0; mode <= 3; ++mode) {
367 for (unsigned swizzle = 0; swizzle < (sz == 16 ? 4 : 1); ++swizzle) {
368 if (sz == 16) {
369 for (unsigned i = 0; i < 2; ++i)
370 ins.swizzle[0][i] = ((swizzle >> i) & 1) ? 1 : 0;
371 }
372
373 ins.roundmode = mode;
374
375 if (!bit_test_single(dev, &ins, input, FMA, debug)) {
376 fprintf(stderr, "FAIL: round.%u.%u\n",
377 sz, mode);
378 }
379 }
380 }
381 }
382
383 static void
384 bit_reduce_helper(struct panfrost_device *dev, uint32_t *input, enum bit_debug debug)
385 {
386 bi_instruction ins = bit_ins(BI_REDUCE_FMA, 2, nir_type_float, 32);
387
388 for (enum bi_reduce_op op = 0; op <= BI_REDUCE_ADD_FREXPM; ++op) {
389 ins.op.reduce = op;
390
391 if (!bit_test_single(dev, &ins, input, true, debug)) {
392 fprintf(stderr, "FAIL: reduce.%s\n",
393 bi_reduce_op_name(op));
394 }
395 }
396 }
397
398 static void
399 bit_select_helper(struct panfrost_device *dev, uint32_t *input, unsigned size, enum bit_debug debug)
400 {
401 unsigned C = 32 / size;
402 bi_instruction ins = bit_ins(BI_SELECT, C, nir_type_uint, 32);
403
404 for (unsigned c = 0; c < C; ++c)
405 ins.src_types[c] = nir_type_uint | size;
406
407 if (size == 8) {
408 /* SCHEDULER: We can only read 3 registers at once. */
409 ins.src[2] = ins.src[0];
410 }
411
412 /* Each argument has swizzle {lo, hi} so 2^C options */
413 unsigned hi = (size == 16) ? 1 : 2;
414
415 for (unsigned add = 0; add < ((size == 16) ? 2 : 1); ++add) {
416 for (unsigned swizzle = 0; swizzle < (1 << C); ++swizzle) {
417 for (unsigned i = 0; i < C; ++i)
418 ins.swizzle[i][0] = ((swizzle >> i) & 1) ? hi : 0;
419
420 if (!bit_test_single(dev, &ins, input, !add, debug)) {
421 fprintf(stderr, "FAIL: select.%u.%u\n",
422 size, swizzle);
423 }
424 }
425 }
426 }
427
428 static void
429 bit_fcmp_helper(struct panfrost_device *dev, uint32_t *input, unsigned size, enum bit_debug debug, bool FMA)
430 {
431 bi_instruction ins = bit_ins(BI_CMP, 2, nir_type_float, size);
432 ins.dest_type = nir_type_uint | size;
433
434 /* 16-bit has swizzles and abs. 32-bit has abs/neg mods. */
435 unsigned max_mods = (size == 16) ? 64 : (size == 32) ? 16 : 1;
436
437 for (enum bi_cond cond = BI_COND_LT; cond <= BI_COND_NE; ++cond) {
438 for (unsigned mods = 0; mods < max_mods; ++mods) {
439 ins.cond = cond;
440
441 if (size == 16) {
442 for (unsigned i = 0; i < 2; ++i) {
443 ins.swizzle[i][0] = ((mods >> (i * 2)) & 1) ? 1 : 0;
444 ins.swizzle[i][1] = ((mods >> (i * 2)) & 2) ? 1 : 0;
445 }
446
447 ins.src_abs[0] = (mods & 16) ? true : false;
448 ins.src_abs[1] = (mods & 32) ? true : false;
449 } else if (size == 8) {
450 for (unsigned i = 0; i < 2; ++i) {
451 for (unsigned j = 0; j < 4; ++j)
452 ins.swizzle[i][j] = j;
453 }
454 } else if (size == 32) {
455 ins.src_abs[0] = (mods & 1) ? true : false;
456 ins.src_abs[1] = (mods & 2) ? true : false;
457 ins.src_neg[0] = (mods & 4) ? true : false;
458 ins.src_neg[1] = (mods & 8) ? true : false;
459 }
460
461 if (!bit_test_single(dev, &ins, input, FMA, debug)) {
462 fprintf(stderr, "FAIL: cmp.%s.%u.%u.%u\n",
463 FMA ? "fma" : "add", size, mods, cond);
464 }
465 }
466 }
467 }
468
469 static void
470 bit_convert_helper(struct panfrost_device *dev, unsigned from_size,
471 unsigned to_size, unsigned cx, unsigned cy, bool FMA,
472 enum bifrost_roundmode roundmode,
473 uint32_t *input, enum bit_debug debug)
474 {
475 bi_instruction ins = {
476 .type = BI_CONVERT,
477 .dest = BIR_INDEX_REGISTER | 0,
478 .src = { BIR_INDEX_REGISTER | 0 }
479 };
480
481 nir_alu_type Ts[3] = { nir_type_float, nir_type_uint, nir_type_int };
482
483 for (unsigned from_base = 0; from_base < 3; ++from_base) {
484 for (unsigned to_base = 0; to_base < 3; ++to_base) {
485 /* Discard invalid combinations.. */
486 if ((from_size == to_size) && (from_base == to_base))
487 continue;
488
489 /* Can't switch signedness */
490 if (from_base && to_base)
491 continue;
492
493 /* No F16_TO_I32, etc */
494 if (from_size != to_size && from_base == 0 && to_base)
495 continue;
496
497 if (from_size != to_size && from_base && to_base == 0)
498 continue;
499
500 /* No need, just ignore the upper half */
501 if (from_size > to_size && from_base == to_base && from_base)
502 continue;
503
504 ins.dest_type = Ts[to_base] | to_size;
505 ins.src_types[0] = Ts[from_base] | from_size;
506 ins.roundmode = roundmode;
507 ins.swizzle[0][0] = cx;
508 ins.swizzle[0][1] = cy;
509
510 if (!bit_test_single(dev, &ins, input, FMA, debug)) {
511 fprintf(stderr, "FAIL: convert.%u-%u.%u-%u.%u%u\n",
512 from_base, from_size,
513 to_base, to_size,
514 cx, cy);
515 }
516 }
517 }
518 }
519
520 static void
521 bit_constant_helper(struct panfrost_device *dev,
522 uint32_t *input, enum bit_debug debug)
523 {
524 enum bi_class C[3] = { BI_MOV, BI_ADD, BI_FMA };
525
526 for (unsigned doubled = 0; doubled < 2; ++doubled) {
527 for (unsigned count = 1; count <= 3; ++count) {
528 bi_instruction ins = bit_ins(C[count - 1], count, nir_type_float, 32);
529
530 ins.src[0] = BIR_INDEX_CONSTANT | 0;
531 ins.src[1] = (count >= 2) ? BIR_INDEX_CONSTANT | (doubled ? 32 : 0) : 0;
532 ins.src[2] = (count >= 3) ? BIR_INDEX_ZERO : 0;
533
534 ins.constant.u64 = doubled ?
535 0x3f800000ull | (0x3f000000ull << 32ull) :
536 0x3f800000ull;
537
538 if (!bit_test_single(dev, &ins, input, true, debug)) {
539 fprintf(stderr, "FAIL: constants.%s.%u\n",
540 doubled ? "two" : "one",
541 count);
542 }
543 }
544 }
545 }
546
547 static void
548 bit_bitwise_helper(struct panfrost_device *dev, uint32_t *input, unsigned size, enum bit_debug debug)
549 {
550 bi_instruction ins = bit_ins(BI_BITWISE, 3, nir_type_uint, size);
551
552 /* TODO: shifts */
553 ins.src[2] = BIR_INDEX_ZERO;
554
555 /* Force identity swizzle -- bitwise is not swizzleable */
556 for (unsigned i = 0; i < 2; ++i) {
557 for (unsigned j = 0; j < (32 / size); ++j)
558 ins.swizzle[i][j] = j;
559 }
560
561 for (unsigned op = BI_BITWISE_AND; op <= BI_BITWISE_XOR; ++op) {
562 ins.op.bitwise = op;
563
564 for (unsigned mods = 0; mods < 4; ++mods) {
565 ins.bitwise.src_invert[0] = mods & 1;
566 ins.bitwise.src_invert[1] = mods & 2;
567
568 if (!bit_test_single(dev, &ins, input, true, debug)) {
569 fprintf(stderr, "FAIL: bitwise.%u.%u.%u\n",
570 size, op, mods);
571 }
572 }
573 }
574 }
575
576 void
577 bit_packing(struct panfrost_device *dev, enum bit_debug debug)
578 {
579 float input32[4];
580 uint16_t input16[8];
581
582 bit_generate_float4(input32);
583 bit_generate_half8(input16);
584
585 bit_constant_helper(dev, (uint32_t *) input32, debug);
586
587 for (unsigned sz = 16; sz <= 32; sz *= 2) {
588 uint32_t *input =
589 (sz == 16) ? (uint32_t *) input16 :
590 (uint32_t *) input32;
591
592 bit_fmod_helper(dev, BI_ADD, sz, true, input, debug, 0);
593 bit_fmod_helper(dev, BI_ADD, sz, false, input, debug, 0);
594 bit_round_helper(dev, (uint32_t *) input32, sz, true, debug);
595
596 bit_fmod_helper(dev, BI_MINMAX, sz, false, input, debug, BI_MINMAX_MIN);
597 bit_fmod_helper(dev, BI_MINMAX, sz, false, input, debug, BI_MINMAX_MAX);
598
599 bit_fma_helper(dev, sz, input, debug);
600 }
601
602 for (unsigned sz = 32; sz <= 32; sz *= 2)
603 bit_csel_helper(dev, sz, (uint32_t *) input32, debug);
604
605 float special[4] = { 0.9 };
606 uint32_t special16[4] = { _mesa_float_to_half(special[0]) | (_mesa_float_to_half(0.2) << 16) };
607
608 bit_table_helper(dev, (uint32_t *) special, debug);
609
610 for (unsigned sz = 16; sz <= 32; sz *= 2) {
611 uint32_t *input =
612 (sz == 16) ? special16 :
613 (uint32_t *) special;
614
615 bit_special_helper(dev, sz, input, debug);
616 }
617
618 for (unsigned rm = 0; rm < 4; ++rm) {
619 bit_convert_helper(dev, 32, 32, 0, 0, false, rm, (uint32_t *) input32, debug);
620
621 for (unsigned c = 0; c < 2; ++c)
622 bit_convert_helper(dev, 32, 16, c, 0, false, rm, (uint32_t *) input32, debug);
623
624 bit_convert_helper(dev, 16, 32, 0, 0, false, rm, (uint32_t *) input16, debug);
625
626 for (unsigned c = 0; c < 4; ++c)
627 bit_convert_helper(dev, 16, 16, c & 1, c >> 1, false, rm, (uint32_t *) input16, debug);
628 }
629
630 bit_frexp_helper(dev, (uint32_t *) input32, debug);
631 bit_reduce_helper(dev, (uint32_t *) input32, debug);
632
633 uint32_t mscale_input[4];
634 memcpy(mscale_input, input32, sizeof(input32));
635 mscale_input[3] = 0x7;
636 bit_fma_mscale_helper(dev, mscale_input, debug);
637
638 for (unsigned sz = 8; sz <= 16; sz *= 2) {
639 bit_select_helper(dev, (uint32_t *) input32, sz, debug);
640 }
641
642 bit_fcmp_helper(dev, (uint32_t *) input32, 32, debug, true);
643 bit_fcmp_helper(dev, (uint32_t *) input32, 16, debug, true);
644
645 for (unsigned sz = 8; sz <= 32; sz *= 2)
646 bit_bitwise_helper(dev, (uint32_t *) input32, sz, debug);
647 }