pan/midgard: Allow 6 instructions per bundle

We never had a scheduler good enough to hit this case before! :)

Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
This commit is contained in:
Alyssa Rosenzweig
2019-09-28 10:28:48 -04:00
parent 34ff50cadd
commit 12a70ccd9e
+3 -2
View File
@@ -198,9 +198,10 @@ typedef struct midgard_bundle {
/* Tag for the overall bundle */
int tag;
/* Instructions contained by the bundle */
/* Instructions contained by the bundle. instruction_count <= 6 (vmul,
* sadd, vadd, smul, vlut, branch) */
int instruction_count;
midgard_instruction *instructions[5];
midgard_instruction *instructions[6];
/* Bundle-wide ALU configuration */
int padding;