Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Marek Olšák
mesa
Commits
594010e3
Commit
594010e3
authored
May 13, 2019
by
Nicolai Hähnle
Committed by
Marek Olšák
Jul 03, 2019
Browse files
radeonsi/gfx10: require LLVM 9
Acked-by:
Bas Nieuwenhuizen
<
bas@basnieuwenhuizen.nl
>
parent
de99e0a5
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/gallium/drivers/radeonsi/si_pipe.c
View file @
594010e3
...
...
@@ -897,6 +897,12 @@ radeonsi_screen_create_impl(struct radeon_winsys *ws,
sscreen
->
ws
=
ws
;
ws
->
query_info
(
ws
,
&
sscreen
->
info
);
if
(
sscreen
->
info
.
chip_class
==
GFX10
&&
HAVE_LLVM
<
0x0900
)
{
fprintf
(
stderr
,
"radeonsi: Navi family support requires LLVM 9 or higher
\n
"
);
FREE
(
sscreen
);
return
NULL
;
}
if
(
sscreen
->
info
.
chip_class
>=
GFX9
)
{
sscreen
->
se_tile_repeat
=
32
*
sscreen
->
info
.
max_se
;
}
else
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment