diff options
author | Alyssa Rosenzweig <[email protected]> | 2020-04-08 19:05:57 -0400 |
---|---|---|
committer | Tomeu Vizoso <[email protected]> | 2020-04-10 16:53:54 +0200 |
commit | 23620d183035b068fe7dbda99fdc629264ca2d9e (patch) | |
tree | 67825a8212ff10e8a1d6fcb6d77ee2659f1d5cd7 /src/gallium/drivers/panfrost | |
parent | e30091bc5162e560320e46abf23be8748cb269ae (diff) |
panfrost: Pass compiler-appropriate options
FMAs need to fuse for Bifrost.
Signed-off-by: Alyssa Rosenzweig <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4505>
Diffstat (limited to 'src/gallium/drivers/panfrost')
-rw-r--r-- | src/gallium/drivers/panfrost/pan_screen.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/gallium/drivers/panfrost/pan_screen.c b/src/gallium/drivers/panfrost/pan_screen.c index 0c40ff67c73..866c23adc93 100644 --- a/src/gallium/drivers/panfrost/pan_screen.c +++ b/src/gallium/drivers/panfrost/pan_screen.c @@ -52,6 +52,7 @@ #include "pan_context.h" #include "midgard/midgard_compile.h" +#include "bifrost/bifrost_compile.h" #include "panfrost-quirks.h" static const struct debug_named_value debug_options[] = { @@ -701,7 +702,10 @@ panfrost_screen_get_compiler_options(struct pipe_screen *pscreen, enum pipe_shader_ir ir, enum pipe_shader_type shader) { - return &midgard_nir_options; + if (pan_device(pscreen)->quirks & IS_BIFROST) + return &bifrost_nir_options; + else + return &midgard_nir_options; } struct pipe_screen * |