ChanServ changed the topic of #panfrost to: Panfrost - FLOSS Mali Midgard + Bifrost + Valhall - Logs https://oftc.irclog.whitequark.org/panfrost - I don't know anything about WSI. That's my story and I'm sticking to it.
<jenneron[m]>
does mesa have problems with LPAE? when I use java with 2048 ram allocated it works, but not enough for my case, when i set max as e.g. 2600, i get a cannot allocate memory error from exyns_dri.so
jernej_ has quit [Remote host closed the connection]
jernej_ has joined #panfrost
jernej_ has joined #panfrost
jernej- has joined #panfrost
jernej_ has quit [Remote host closed the connection]
jernej has quit [Ping timeout: 480 seconds]
Net147 has quit [Quit: Quit]
Net147 has joined #panfrost
Danct12 has quit [Quit: Quitting]
karolherbst has quit [Remote host closed the connection]
Danct12 has joined #panfrost
karolherbst has joined #panfrost
nlhowell has joined #panfrost
hanetzer has quit [Ping timeout: 480 seconds]
hanetzer has joined #panfrost
Danct12 has quit [Remote host closed the connection]
<q4a>
I'm a bit confused in `mux.i32`. Valhall docs says: If true, `A` is chosen, else `B` is chosen. The `bit` modifier acts bitwise, equivalent to `bitselect()` in OpenCL, so `MUX.i32.bit A, B, mask` calculates `(A & mask) | (A & ~mask)`.
<q4a>
`bitselect()` in OpenCL says: Each bit of result is corresponding bit of a if corresponding bit of c is 0. Otherwise it is the corresponding bit of b.