Re: [Mesa-dev] [PATCH] EGL/mesa: Initial write up fot MESA_query_driver

2018-12-31 Thread Veluri Mithun
Hi Everyone, I made changed changes to the patch as per @Rob Clark comments and I verified all the API functions with sample code, they are working fine. Please merge the MR: https://gitlab.freedesktop.org/mesa/mesa/merge_requests/47 if there are no changes Thanks & Happy New Year Veluri. On W

Re: [Mesa-dev] [PATCH] meson, anv: Add inc_vulkan to include directories

2018-12-31 Thread Dylan Baker
Quoting Jan Vesely (2018-12-29 08:22:55) > On Wed, 2018-12-26 at 15:26 +, Eric Engestrom wrote: > > On Tuesday, 2018-12-25 23:09:53 +0100, Jan Vesely wrote: > > > Guess my meson-fu is still pretty weak. > > > Now I see the build failure again: > > > In file included from ../mesa/src/intel/vulka

[Mesa-dev] [Bug 109202] nv50_ir.cpp:749:19: error: cannot use typeid with -fno-rtti

2018-12-31 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=109202 --- Comment #1 from Dylan Baker --- You've either added -no-rtti or are using llvm built without rtti. I can make this a hard error. -- You are receiving this mail because: You are the assignee for the bug. You are the QA Contact for the bug._

[Mesa-dev] [Bug 109202] nv50_ir.cpp:749:19: error: cannot use typeid with -fno-rtti

2018-12-31 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=109202 Bug ID: 109202 Summary: nv50_ir.cpp:749:19: error: cannot use typeid with -fno-rtti Product: Mesa Version: git Hardware: x86-64 (AMD64) OS: Linux (All)

[Mesa-dev] [Bug 109201] Deep Rock Galactic: GPU Hang

2018-12-31 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=109201 Bug ID: 109201 Summary: Deep Rock Galactic: GPU Hang Product: Mesa Version: git Hardware: x86-64 (AMD64) OS: Linux (All) Status: NEW Severity: normal

[Mesa-dev] [Bug 109201] Deep Rock Galactic: GPU Hang

2018-12-31 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=109201 Alexander changed: What|Removed |Added Version|git |18.3 -- You are receiving this mail becaus

Re: [Mesa-dev] [PATCH v2 26/53] intel/compiler: Extended Math is limited to SIMD8 on half-float

2018-12-31 Thread Pohjolainen, Topi
On Wed, Dec 19, 2018 at 12:50:54PM +0100, Iago Toral Quiroga wrote: > From the Skylake PRM, Extended Math Function: > > "The execution size must be no more than 8 when half-floats >are used in source or destination operand." > > Earlier generations do not support Extended Math with half-flo

Re: [Mesa-dev] [PATCH v2 19/53] intel/compiler: implement 16-bit fsign

2018-12-31 Thread Pohjolainen, Topi
On Wed, Dec 19, 2018 at 12:50:47PM +0100, Iago Toral Quiroga wrote: > v2: > - make 16-bit be its own separate case (Jason) > > Reviewed-by: Topi Pohjolainen (v1) This version also. > --- > src/intel/compiler/brw_fs_nir.cpp | 18 +- > 1 file changed, 17 insertions(+), 1 deletio

Re: [Mesa-dev] [PATCH v2 16/53] intel/compiler: handle conversions to half-float

2018-12-31 Thread Pohjolainen, Topi
On Wed, Dec 19, 2018 at 12:50:44PM +0100, Iago Toral Quiroga wrote: > There are some hardware restrictions that brw_nir_lower_conversions should > have taken care of before we get here. This patch and v2 of the previous: Reviewed-by: Topi Pohjolainen > --- > src/intel/compiler/brw_fs_nir.cpp |

Re: [Mesa-dev] [PATCH v2 14/53] intel/compiler: split float to 64-bit opcodes from int to 64-bit

2018-12-31 Thread Pohjolainen, Topi
On Wed, Dec 19, 2018 at 12:50:42PM +0100, Iago Toral Quiroga wrote: > Going forward having these split is a bit more convenient since these two > groups have different restrictions. Reviewed-by: Topi Pohjolainen > --- > src/intel/compiler/brw_fs_nir.cpp | 8 > 1 file changed, 8 inserti

[Mesa-dev] [Bug 109190] virgl: buffer flushing error with some dEQP tests [bisected]

2018-12-31 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=109190 Bug ID: 109190 Summary: virgl: buffer flushing error with some dEQP tests [bisected] Product: Mesa Version: git Hardware: Other OS: All Status:

Re: [Mesa-dev] [PATCH v2 13/53] intel/compiler: add a helper to handle conversions to 64-bit in atom

2018-12-31 Thread Pohjolainen, Topi
On Wed, Dec 19, 2018 at 12:50:41PM +0100, Iago Toral Quiroga wrote: > --- > src/intel/compiler/brw_fs_nir.cpp | 55 ++- > 1 file changed, 33 insertions(+), 22 deletions(-) Reviewed-by: Topi Pohjolainen > > diff --git a/src/intel/compiler/brw_fs_nir.cpp > b/src/inte

Re: [Mesa-dev] [PATCH v2 12/53] intel/compiler: add a NIR pass to lower conversions

2018-12-31 Thread Pohjolainen, Topi
On Wed, Dec 19, 2018 at 12:50:40PM +0100, Iago Toral Quiroga wrote: > Some conversions are not directly supported in hardware and need to be > split in two conversion instructions going through an intermediary type. > Doing this at the NIR level simplifies a bit the complexity in the backend. I li