Skip to content

intel/compiler: Report the number of non-spill/fill SEND messages on vec4 too

Ian Romanick requested to merge idr/mesa:review/log-vec4-sends into master

This make shader-db's report.py work on Haswell and earlier platforms. The problem is that the script would detect the "sends" output for scalar shaders and expect in in vec4 shaders too. When it didn't find it, the script would fail with:

    Traceback (most recent call last):
      File "./report.py", line 351, in <module>
        main()
      File "./report.py", line 182, in main
        before_count = before[p][m]
    KeyError: 'sends'

Fixes: f192741d ("intel/compiler: Report the number of non-spill/fill SEND messages")

Merge request reports