ChanServ changed the topic of #dri-devel to: <ajax> nothing involved with X should ever be unable to find a bar
kunal_10185[m] has joined #dri-devel
Mershl[m] has joined #dri-devel
YHNdnzj[moz] has joined #dri-devel
koki23[m] has joined #dri-devel
dantob has joined #dri-devel
dabrain34[m] has joined #dri-devel
tomba has joined #dri-devel
cwfitzgerald[m] has joined #dri-devel
jasuarez has joined #dri-devel
MotiH[m] has joined #dri-devel
K0bin[m] has joined #dri-devel
gnustomp[m] has joined #dri-devel
daniliberman[m] has joined #dri-devel
talcohen[m] has joined #dri-devel
znullptr[m] has joined #dri-devel
ofirbitt[m] has joined #dri-devel
fkassabri[m] has joined #dri-devel
dhirschfeld2[m] has joined #dri-devel
swick[m] has joined #dri-devel
neobrain[m] has joined #dri-devel
tuxayo has joined #dri-devel
devarsht[m] has joined #dri-devel
konstantin has quit [Ping timeout: 480 seconds]
yshui` has joined #dri-devel
T_UNIX has joined #dri-devel
tintou has joined #dri-devel
konstantin has joined #dri-devel
zamundaaa[m] has joined #dri-devel
iive has quit [Quit: They came for me...]
knr has joined #dri-devel
jkrzyszt has quit [Ping timeout: 480 seconds]
KunalAgarwal[m][m] has joined #dri-devel
alanc has quit [Remote host closed the connection]
jhli has joined #dri-devel
Guest6892 is now known as DemiMarie
maxzor has quit [Ping timeout: 480 seconds]
jfalempe has quit [Remote host closed the connection]
jfalempe has joined #dri-devel
luben has joined #dri-devel
alanc has joined #dri-devel
Aura has joined #dri-devel
krumelmonster has quit [Ping timeout: 480 seconds]
glennk has quit [Ping timeout: 480 seconds]
flynnjiang has joined #dri-devel
krumelmonster has joined #dri-devel
<jenatali> And there's 4.4 merged and 4.5 ready to go :)
aissen has joined #dri-devel
columbarius has joined #dri-devel
co1umbarius has quit [Ping timeout: 480 seconds]
heat_ has quit [Ping timeout: 480 seconds]
pjakobsson_ has joined #dri-devel
pjakobsson has quit [Ping timeout: 480 seconds]
Kayden has quit [Quit: home]
luben has quit [Ping timeout: 480 seconds]
Daanct12 has joined #dri-devel
aravind has joined #dri-devel
<Lynne> by the way, ffmpeg 6.1 has been released with vulkan video support, so I invite those bored to run with RADV_PERFTEST=video_decode to cause troubles for me and airlied
luben has joined #dri-devel
Kayden has joined #dri-devel
luben has quit [Ping timeout: 480 seconds]
flynnjiang1 has joined #dri-devel
flynnjiang has quit [Remote host closed the connection]
konstantin has quit [Ping timeout: 480 seconds]
konstantin has joined #dri-devel
airlied has joined #dri-devel
flynnjiang1 has quit [Read error: Connection reset by peer]
YuGiOhJCJ has joined #dri-devel
OftenTimeConsuming has quit [Remote host closed the connection]
OftenTimeConsuming has joined #dri-devel
yuq825 has joined #dri-devel
aravind has quit [Ping timeout: 480 seconds]
<kode54> I'll wait for Arch to package 6.1
crabbedhaloablut has joined #dri-devel
bmodem has joined #dri-devel
yyds has joined #dri-devel
TMM has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
TMM has joined #dri-devel
airlied has quit [Ping timeout: 480 seconds]
bmodem has quit [Ping timeout: 480 seconds]
bmodem has joined #dri-devel
oneforall2 has quit [Remote host closed the connection]
sima has joined #dri-devel
oneforall2 has joined #dri-devel
fab has joined #dri-devel
Duke`` has joined #dri-devel
GreaseMonkey has quit [Remote host closed the connection]
GreaseMonkey has joined #dri-devel
itoral has joined #dri-devel
fab has quit [Quit: fab]
Duke`` has quit [Ping timeout: 480 seconds]
co1umbarius has joined #dri-devel
Jeremy_Rand_Talos_ has quit [Remote host closed the connection]
Jeremy_Rand_Talos_ has joined #dri-devel
columbarius has quit [Ping timeout: 480 seconds]
tzimmermann has joined #dri-devel
fab has joined #dri-devel
jsa has joined #dri-devel
macslayer has quit [Remote host closed the connection]
kzd has quit [Ping timeout: 480 seconds]
frieder has joined #dri-devel
Company has joined #dri-devel
glennk has joined #dri-devel
mvlad has joined #dri-devel
tursulin has joined #dri-devel
Ahuj has joined #dri-devel
fab has quit [Quit: fab]
<mripard> sima, emersion: I don't think using the global CMA heap will work. You might have additional, device-specific, requirements when it comes to where the buffer is that the CMA heap won't address (and won't even know about), so it needs to be tied to the device somehow
<emersion> can you elaborate on these requirements?
<mripard> well, it can be as simple as things like the device can only access the lower 128MB of RAM or whatever
<mripard> so your buffer needs to be within that range to be useful
<emersion> and that restriction is specific to scanout capability?
<emersion> what about render and video?
<emersion> no restriction there?
<mripard> you can have the same story there
<mripard> it's all device specific, really
<mripard> like on Allwinner SoC, the codec is in that situation and can only access the lower 256MB of RAM
<emersion> if we're talking specifically about vc4 and v3d?
<mripard> (the older ones)
sgruszka has joined #dri-devel
<mripard> I don't think vc4 and v3d have those kind of restrictions
<emersion> ok, so some split render/display SoCs have this
<emersion> and some not
<emersion> i see
<mripard> yeah
<mripard> so I think your driver-specific heap makes sense
<emersion> alternatively, we could have a new heap created outside of the driver based on dt info for these "lower than $addr" regions
<mripard> because then you can tie that to the device that will allocate the memory buffers and make sure that it can access the buffer it allocates
<mripard> all those constraints are abstracted away by the DMA API
<mripard> when you call dma_alloc_* it will already make sure those constraints are met
<emersion> but we will want to express the compat links between heaps and devices at some point
<mripard> so doing that all over again seems like a huge duplication to me
yyds has quit [Remote host closed the connection]
<mripard> (even more so since they aren't all expressed in DT)
<mripard> so you really need the struct device to make your allocation
<mripard> and for the like between heap and device, the idea swick[m] (I think?) had to make it a sysfs link sounds good to me?
<emersion> no, sima had this idea
<mripard> that way you can discover it easily, there's no risk of a name clash, etc.
<mripard> oh, sorry
yyds has joined #dri-devel
<emersion> but then you need to draw links between all devices' heaps
<emersion> instead of between all devices and the central heaps
<emersion> each device comes with its own heaps, and each device needs to know about each other possible device to advertise the links
<mripard> yeah, it's kind of the discussion I started in my mails. If you want to completely solve the buffer placement issue, it's much more difficult than just adding heaps
<mripard> like, there's no guarantee that the producer device and the scanout have the same requirements
<emersion> it is indeed
frieder_ has joined #dri-devel
<mripard> and you don't even have a guarantee (aside from HW designers sanity) that the range they can access are overlapping
<mripard> so you need to aggregate all the constraints of all the devices involved and allocate a buffer there
<mripard> and we don't have an API for that
<mripard> also, KMS kind of assume that the DRM device is *one* device when it comes to allocation
<emersion> sima said that if we have placement constraints via heaps we shouldn't be too far
apinheiro has joined #dri-devel
<emersion> there is the full buffer constraints proposal sent a few years back by James Jones, but it's pretty complicated and uses heaps anyways
<mripard> but ARM devices will typically have different devices to access DMA, and again there's no guarantee that all the hardware devices that can access RAM have the same constraintns
frieder has quit [Ping timeout: 480 seconds]
<mripard> (it's also true for IOMMU mapping)
<mripard> so we would need a new allocation API that would be finer-grained than the one we have right now
<mripard> so I really don't think we should aim at fixing that
<mripard> it's going to be a nightmare
<mripard> and from a practical PoV, what we have works well enough as it is
<emersion> this goal is pretty much the reason i'm working on this, fwiw
<mripard> (or maybe not :D)
<emersion> if the DMA heaps we create are no better than dumb buffers, maybe we can just stick with dumb buffers
<emersion> (and tell people running headless or systemd-less to just chmod their primary node lol)
<mripard> so, yeah, I really think your solution is sound, works well enough to address your immediate needs, and would be a good stopgap measure until we have that discussion again in 5 years :)
<emersion> aha, because now i think my solution is pretty much unsound :P
<mripard> is it perfect? No. Do we need perfection? Also no
<mripard> as long as we provide some way for userspace to discover which heap it should use for a particular device
<mripard> we can revisit later and change whatever we want beneath it
<mripard> (famous last words)
<mripard> but seriously, everything that we would need could be done on device (getting the allocation constraints) or heaps (providing a hint to where the buffer should be allocated)
<swick[m]> Isn't the question really about what a heap should represent? If it's about encoding all the device constraints etc then you need a heap for almost all devices, bit if it's just about the placement then it's fine to have way fewer heaps but we need to communicate the constraints another way in the fituret
<emersion> heaps are not designed to represent each and every constraint
<emersion> they are only designed for placement
<mripard> oh, right
<emersion> so stuff like stride or addr align is out of scope for instance
<emersion> addr lower than given value is a bit of a weird case
<mripard> constraints should definitely be expressed for a given device, and once we have "hinting" for heaps, then we can just use a global one
<swick[m]> A specific address range seems like a placement issue to me
<swick[m]> what's hinting in this context?
<emersion> in our proposal with James Jones, constraints included a set of heaps
<swick[m]> I'm still not sure what you actually want to build here...
<mripard> swick[m]: asking for the buffer to be allocated within a given range
<swick[m]> So allocating on a specific heap?
yyds has quit [Remote host closed the connection]
<swick[m]> Oh, hinting to the heap which range to allocate in
yyds has joined #dri-devel
<swick[m]> And aren't constraints different per placement?
<emersion> javierm: yes
<javierm> emersion: I see that ezequielg_ also proposed https://patchwork.kernel.org/project/dri-devel/patch/20200816172246.69146-1-ezequiel@collabora.com/ around the same time
<emersion> oh, good find
V_ has joined #dri-devel
<emersion> ah i was CC'ed even
ptrc has quit [Ping timeout: 480 seconds]
rasterman has joined #dri-devel
<javierm> but right now it seems that people just create different variants of dma-buf heaps, like the uncached / WC dma-buf healp I shared that Android uses
<emersion> yeah the discussion there is quite similar to the one we're having now
<javierm> I also see that vendor trees have other dma-buf heaps that are tailored to the constraints on these platforms
<mripard> I think we can have something workable if we have something like a) device access constraints in sysfs b) a lib to resolve the constraints of devices we want to "link" together c) some way to tell heaps to allocate a buffer in a particular range
Mary has quit [Ping timeout: 480 seconds]
Rayyan has quit [Ping timeout: 480 seconds]
V has quit [Ping timeout: 480 seconds]
<mripard> I think Lucas Stach also made some work in this area some time ago
<mripard> (not sure if he's on IRC)
<javierm> mripard: I was wondering the other day at what point the DRM/KMS subsystem will need something like the media controller framework that media/v4l2 has
<mripard> I seriously hope we never do
<javierm> with kmsro, multiple display and render nodes, dma-buf heaps with constraints, etc
<mripard> and the media controller API doesn't address that either
pcercuei has joined #dri-devel
<MrCooper> mripard: AFAIK Lucas' nickname is lynxeye, doesn't seem here right now though
<mripard> MrCooper: oh, thanks
<mripard> I couldn't recall his nick
<javierm> mripard: yeah, that's why I said "something like", in other words some control interface to setup a display and rendering pipeline
<javierm> because you also said a lib to resolve the constraints and what devices can be linked together
lynxeye has joined #dri-devel
<javierm> the best we have right now for that AFAIU is kmsro in mesa and is a lot of hardcoding when I looked at that
<mripard> emersion: what?! I've never seen that page before
<mripard> it's awesome, thanks
<emersion> np!
<javierm> emersion: nice, thanks for that indeed.
<mripard> javierm: right, but it's also something that should work outside of KMS, like for camera-to-display or codec-to-gpu-to-display
glennk has quit [Ping timeout: 480 seconds]
jkrzyszt has joined #dri-devel
<mripard> and imo, atomic modesetting is already superior to the media controller API (but with simpler cases to address too tbf)
<mripard> the only lacking part at the moment is bridges, and that has fairly big implications (like it would probably affect connectors)
<mripard> but I don't think we will ever need to use the media controller API
ptrc has joined #dri-devel
Mary has joined #dri-devel
Rayyan has joined #dri-devel
<javierm> mripard: yeah, right now that constraint negotiation how is handled? user-space just tries to import the dma-buf and fails or ?
<mripard> allocate the buffer on one end, import it on the other end and hope for the best
kem has quit [Ping timeout: 480 seconds]
<mripard> which, tbf, seems to work fairly well
<mripard> because the hardware designers are sane, and the constraints I've seen are most of the time on the "producer" end, not the scanout
<javierm> mripard: I see. That's interesting
vliaskov has joined #dri-devel
<mripard> there was this KMS driver (contributed by paulk iirc) that had those weird constraints where framebuffers had to be at fixed addresses
<mripard> logicvc I think?
<mripard> right
<mripard> "With version 3, framebuffers are stored in a dedicated contiguous
<mripard> memory area, with a base address hardcoded for each layer."
<emersion> ... ouch
glennk has joined #dri-devel
kem has joined #dri-devel
mauld has quit [Quit: WeeChat 3.6]
<javierm> mripard: /dev/dma_heap/fixed_$addr :P
<javierm> mripard: combining that with a codec like the one you mentioned Allwinner has that requires a dma-buf below a given address would be interesting
<mripard> like I said, even though we don't always like to admit it, HW designers are sane :)
<mripard> but in one of those cases, I don't think how you can solve it without a memcpy (assuming the source buffer is accessible by the CPU)
donaldrobson has joined #dri-devel
itoral has quit [Remote host closed the connection]
itoral has joined #dri-devel
pcercuei has quit [Quit: brb]
pcercuei has joined #dri-devel
<javierm> mripard: pretty sure that HW engineers don't consider SW engineers sane looking at all the layers of complexity that create :)
<mripard> haters gonna hate :)
<javierm> :D
<enunes> emersion itoral so I'm finding it quite hard to pass information all the way from the wsi wayland layer to the device specific vulkan allocation, it seems that mesa even uses its own small vulkan extension just to differ wsi allocations from regular vulkan memory allocations
<emersion> indeed
<enunes> I think first I'm going to submit a patch just removing wl_drm usage but still relying on the master fd opened at device initialization, that fixes the bug
<emersion> yeah sounds good
<enunes> but it still doesn't make use of the dmabuf feedback info
<emersion> ideally also gracefully handle missing master FD, by degrading to regular allocations
<enunes> it's a shame because the dmabuf feedback info is right there with the correct device to use, I'm still probably missing something on how it should ideally be used
<dj-death> jenatali: hey, I tried your suggestion of opt_memcpy for CL structures but that didn't really help
<pinchartl> javierm: a DMA heap linked to a DT reserved memory region would make sense
<dj-death> jenatali: most of the variables keep getting lowered to scratch load/store
<pinchartl> the problem is to figure out what heap to use
<dj-death> jenatali: if you have any suggestion on how to solve this kind of issue I would be interested to hear them :)
<javierm> pinchartl: yeah, I didn't know that devices could have constraints as mripard explained
<pinchartl> javierm: something we've seen for cameras is the requirement for Y and UV planes to be located in different DDR banks
<pinchartl> to increase memory bandwidth
<mripard> javierm: to some extent, you did :) the ssd130x driver is so constrained that you have to memcpy from a random buffer into the actual one
<mripard> (also, not mappable)
<emersion> pinchartl: oh that's a fun one...
<pinchartl> emersion: I could imagine a display device having similar constraints
<mripard> I'm not sure
<mripard> YUV isn't as prevalent as it is for v4l2 for example
<pinchartl> it makes more sense for cameras though, as display bandwidth tends to be lower
<mripard> and multi-planar RGB doesn't really make much sense
<pinchartl> 8k @300fps displays are not that common :-)
<pinchartl> (yet)
<MrCooper> javierm: FYI, that simpledrm patch cover letter with no subject being shown in a separate thread is a gmail issue, a decent MUA will show it in a single thread with the patch and follow-ups
jlawryno has joined #dri-devel
<javierm> mripard: re: ssd130x - hehe, you are correct :)
YuGiOhJCJ has quit [Remote host closed the connection]
<javierm> MrCooper: it may well be. I use as MUA emacs-notmuch and fetch the email using mbsync, but it could be that gmail mangles the emails and the pulled thread is already broken
YuGiOhJCJ has joined #dri-devel
pcercuei has quit [Quit: brb]
sghuge has quit [Remote host closed the connection]
sghuge has joined #dri-devel
cmichael has joined #dri-devel
<MrCooper> the e-mail headers have all the information for proper threading, Thunderbird showed them in a single thread
<javierm> MrCooper: weird
<MrCooper> (not using gmail in any way)
<javierm> there's something wrong though, because mripard has a script to get the emails threads from lore and that failed too for me
<javierm> but maybe that's a consequence of my MUA breaking the thread
<mripard> stop telling everyone about the bugs in my scripts :'(
<javierm> mripard: there's no bug in your script. The threading is what's broken
<mripard> mutt doesn't follow the threading either though
<mripard> but In-Reply-To and References are set properly
<mripard> so it looks fine by me?
<mripard> but somehow it confuses multiple tools
<mripard> (lore, gmail and mutt)
<MrCooper> most likely due to the empty subject?
glennk has quit [Ping timeout: 480 seconds]
pcercuei has joined #dri-devel
sgruszka has quit [Remote host closed the connection]
<karolherbst> dcbaker: ping on the proc macro native workaround somebody proposed: https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/25775
pochu has joined #dri-devel
neniagh has quit []
pochu has quit []
neniagh has joined #dri-devel
pochu has joined #dri-devel
marcan has quit [Server closed connection]
marcan has joined #dri-devel
Net147 has quit [Remote host closed the connection]
jcristau has quit [Server closed connection]
jcristau has joined #dri-devel
Net147 has joined #dri-devel
fab has joined #dri-devel
dogukan has joined #dri-devel
shadeslayer has quit [Server closed connection]
zamundaaa has quit [Server closed connection]
mupuf has quit [Server closed connection]
mupuf has joined #dri-devel
HdkR has quit [Server closed connection]
libv_ has joined #dri-devel
HdkR has joined #dri-devel
libv has quit [Ping timeout: 480 seconds]
shadeslayer has joined #dri-devel
shadeslayer is now known as Guest6954
Guest6954 is now known as shadeslayer
zamundaaa has joined #dri-devel
libv has joined #dri-devel
javierm has quit [Server closed connection]
javierm has joined #dri-devel
libv_ has quit [Ping timeout: 480 seconds]
jlawryno has quit [Ping timeout: 480 seconds]
airlied has joined #dri-devel
glennk has joined #dri-devel
eloy_ has quit [Server closed connection]
eloy_ has joined #dri-devel
uajain has quit [Server closed connection]
uajain has joined #dri-devel
gpiccoli has quit [Server closed connection]
gpiccoli has joined #dri-devel
robmur01 has quit [Remote host closed the connection]
pH5 has quit [Server closed connection]
pH5 has joined #dri-devel
robmur01 has joined #dri-devel
ivyl has quit [Server closed connection]
ivyl has joined #dri-devel
derRichard has quit [Server closed connection]
derRichard has joined #dri-devel
yyds has quit [Remote host closed the connection]
pepp has quit [Server closed connection]
pepp has joined #dri-devel
jlawryno has joined #dri-devel
puck_ has quit [Server closed connection]
puck_ has joined #dri-devel
yuq825 has quit []
Daanct12 has quit [Quit: WeeChat 4.1.1]
CounterPillow has quit [Server closed connection]
CounterPillow has joined #dri-devel
apinheiro has quit [Quit: Leaving]
Arsen has quit [Server closed connection]
Arsen has joined #dri-devel
airlied has quit [Ping timeout: 480 seconds]
dogukan has quit [Remote host closed the connection]
itoral has quit [Remote host closed the connection]
bmodem has quit [Ping timeout: 480 seconds]
hansg has joined #dri-devel
any1 has quit [Server closed connection]
JohnnyonFlame has joined #dri-devel
any1 has joined #dri-devel
gruetzkopf has quit [Server closed connection]
gruetzkopf has joined #dri-devel
hakzsam has quit [Server closed connection]
hakzsam has joined #dri-devel
off^ has quit [Remote host closed the connection]
kgz has quit [Server closed connection]
kgz has joined #dri-devel
sgruszka has joined #dri-devel
macromorgan has joined #dri-devel
macromorgan_ has quit [Read error: Connection reset by peer]
LaserEyess has quit [Server closed connection]
LaserEyess has joined #dri-devel
haagch has quit [Server closed connection]
haagch has joined #dri-devel
invertedoftc09691 has quit [Server closed connection]
invertedoftc09691 has joined #dri-devel
illwieckz has quit [Read error: Connection reset by peer]
azerov has quit [Server closed connection]
immibis has quit [Server closed connection]
immibis has joined #dri-devel
illwieckz has joined #dri-devel
mwk_ has quit [Server closed connection]
mwk has joined #dri-devel
fab has quit [Quit: fab]
mal has quit [Server closed connection]
mal has joined #dri-devel
maxzor has joined #dri-devel
egbert has quit [Server closed connection]
egbert has joined #dri-devel
mmind00 has quit [Server closed connection]
mmind00 has joined #dri-devel
mmind00 has quit []
mmind00 has joined #dri-devel
rbmarliere has joined #dri-devel
<jani> sima: or go all the way and remove the warnings too?
fahien has quit [Server closed connection]
fahien has joined #dri-devel
<sima> jani, iirc inexisting modparam don't cause module failures anymore, so I think we could just thrash it outright?
<sima> either way a-b: me
jlawryno has quit [Ping timeout: 480 seconds]
<jani> sima: I'll do that, thanks
leandrohrb5 has quit [Server closed connection]
leandrohrb5 has joined #dri-devel
fab has joined #dri-devel
YuGiOhJCJ has quit [Quit: YuGiOhJCJ]
neobrain has quit [Server closed connection]
neobrain has joined #dri-devel
mvlad has quit [Remote host closed the connection]
kzd has joined #dri-devel
heat_ has joined #dri-devel
maxzor has quit [Ping timeout: 480 seconds]
airlied has joined #dri-devel
<emersion> agd5f: should we merge the atomic async flip stuff via the amd tree or via the drm-misc tree?
macslayer has joined #dri-devel
angerctl has quit [Ping timeout: 480 seconds]
<emersion> tzimmermann: one of the patches in Javier's series has docs to explain the two kinds of damage
<tzimmermann> emersion, patch 5? i still found it a bit undescriptive
<javierm> tzimmermann: did you follow the referred links ?
<tzimmermann> i'm going to read that
<tzimmermann> ah, in patch 5. ok!
<javierm> tzimmermann: great and you understood correctly that the goal was to effectively disable damage handling if page flip with a new framebuffer plus damage
<javierm> but that's the best we can do until there is buffer age or similar buffer damage accumulation tracking
airlied has quit [Ping timeout: 480 seconds]
unerlige has quit [Ping timeout: 480 seconds]
lstrano has quit [Remote host closed the connection]
<jenatali> dj-death: If you want to paste a nir_print dump, I'd take a look at it. My psychic powers of deduction aren't giving me any more ideas right now though
<tzimmermann> those links in patch 5 were helpful, thanks
Namarrgon has joined #dri-devel
<dj-death> jenatali: will try to give an example :)
Duke`` has joined #dri-devel
<jenatali> \o/ GL4.5 merged
hansg has quit [Quit: Leaving]
lstrano has joined #dri-devel
<javierm> tzimmermann: you are welcome
<daniels> jenatali: that's awesome!
<jenatali> :)
Haaninjo has joined #dri-devel
gerddie6 has quit [Server closed connection]
gerddie6 has joined #dri-devel
tzimmermann has quit [Quit: Leaving]
<karolherbst> gfxstrand: time for a very very quick look at my SyCL MR? It's just trivial work arounds, I just want to know what you think about those: https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/25701
sgruszka has quit [Remote host closed the connection]
flom84 has joined #dri-devel
flom84 has quit []
flom84 has joined #dri-devel
cmichael has quit [Quit: Leaving]
<karolherbst> pain.. I'm hitting this issue: https://github.com/KhronosGroup/SPIRV-LLVM-Translator/issues/1142
<karolherbst> jenatali: ever ran into this as well? openvino is hitting this pattern :'(
<karolherbst> I left a comment there with the code I've hit
<jenatali> I haven't, that looks annoying
flom84 has quit [Quit: Leaving]
<karolherbst> mhhh yeah..
<karolherbst> _though_ might be easily fixed
flom84 has joined #dri-devel
<karolherbst> just use Uniform constant when emiting the variable and the loads
<karolherbst> but ....
<karolherbst> well...
<karolherbst> probably the right thing
flom84 has quit []
flom84 has joined #dri-devel
vaxry_ has quit [Server closed connection]
vaxry has joined #dri-devel
flom84 has quit [Quit: Leaving]
flom84 has joined #dri-devel
maxzor has joined #dri-devel
Omax has quit [Server closed connection]
Omax has joined #dri-devel
TMM has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
TMM has joined #dri-devel
dos1 has quit [Server closed connection]
dos1 has joined #dri-devel
flom84 has quit [Ping timeout: 480 seconds]
unerlige has joined #dri-devel
libv_ has joined #dri-devel
libv has quit [Ping timeout: 480 seconds]
evadot has quit [Server closed connection]
evadot has joined #dri-devel
greenjustin_ has joined #dri-devel
bbrezillon has quit [Server closed connection]
donaldrobson has quit [Ping timeout: 480 seconds]
bbrezillon has joined #dri-devel
gouchi has joined #dri-devel
Peuc has quit [Quit: Peuc]
Peuc has joined #dri-devel
nashpa has quit [Server closed connection]
dliviu has joined #dri-devel
JoshuaAshton has quit [Server closed connection]
JoshuaAshton has joined #dri-devel
jkrzyszt has quit [Ping timeout: 480 seconds]
novaisc93 has quit [Server closed connection]
novaisc93 has joined #dri-devel
airlied has joined #dri-devel
Ahuj has quit [Ping timeout: 480 seconds]
vsyrjala has quit [Server closed connection]
vsyrjala has joined #dri-devel
Adrinael has quit [Server closed connection]
Adrinael has joined #dri-devel
Adrinael is now known as Guest7003
Guest7003 is now known as Adrinael
kxkamil2 has quit [Server closed connection]
kxkamil2 has joined #dri-devel
<Hazematman> Could someone add llvmpipe and lavapipe labels to my MR please? https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/26153
<karolherbst> done
jsa has quit []
<Hazematman> Thank you very much karolherbst ! :)
frieder_ has quit [Remote host closed the connection]
greenjustin_ has quit [Ping timeout: 480 seconds]
kzd has quit [Ping timeout: 480 seconds]
Ristovski has quit [Server closed connection]
Ristovski has joined #dri-devel
azerov has joined #dri-devel
zehortigoza has quit [Server closed connection]
zehortigoza has joined #dri-devel
APic has quit [Server closed connection]
APic has joined #dri-devel
linkmauve has quit [Server closed connection]
tjaalton has quit [Server closed connection]
tjaalton has joined #dri-devel
linkmauve has joined #dri-devel
airlied has quit [Ping timeout: 480 seconds]
swiftgeek has quit [Server closed connection]
swiftgeek has joined #dri-devel
glennk has quit [Ping timeout: 480 seconds]
sima has quit [Ping timeout: 480 seconds]
airlied has joined #dri-devel
rasterman has quit [Quit: Gettin' stinky!]
simon-perretta-img has quit [Ping timeout: 480 seconds]
airlied has quit [Ping timeout: 480 seconds]
lynxeye has quit [Quit: Leaving.]
Lynne has quit [Server closed connection]
Lynne has joined #dri-devel
Amber_Harmonia has quit [Server closed connection]
Amber_Harmonia has joined #dri-devel
<jenatali> Ugh. Trying to enable SPIR-V in GLOn12 has me chasing bugs in piglit and spirv-tools
<dj-death> fun time
shoragan has quit [Server closed connection]
simon-perretta-img has joined #dri-devel
shoragan has joined #dri-devel
<jenatali> Sure. You could say that
DPA has quit [Server closed connection]
<jenatali> Anybody here a SPIRV-Tools maintainer and want to help along https://github.com/KhronosGroup/SPIRV-Tools/pull/5477 ? :)
DPA has joined #dri-devel
glennk has joined #dri-devel
vliaskov has quit []
<gfxstrand> jenatali: SPIRV-Tools folsk are usually fairly responsive.
<jenatali> 👍
<karolherbst> I have a hack for my issue and I hate it
a1batross has quit [Server closed connection]
simon-perretta-img has quit [Ping timeout: 480 seconds]
simon-perretta-img has joined #dri-devel
tursulin has quit [Ping timeout: 480 seconds]
<jenatali> So I don't actually expect to get any reviews on https://gitlab.freedesktop.org/mesa/piglit/-/merge_requests/850 because it's Windows stuff. So instead I'll fish for acks
illwieckz has quit [Ping timeout: 480 seconds]
fab has quit [Quit: fab]
illwieckz has joined #dri-devel
<dj-death> huh
<dj-death> what's the variable to disable threading?
<Company> mesa_glthread=false GALLIUM_THREAD=0
<Company> I needed both when using sysprof
flom84 has joined #dri-devel
<dj-death> thanks a lot
kzd has joined #dri-devel
Duke`` has quit [Ping timeout: 480 seconds]
flom84 has quit [Ping timeout: 480 seconds]
Haaninjo has quit [Quit: Ex-Chat]
AntonKi8 has joined #dri-devel
vaxry has quit [Remote host closed the connection]
vaxry has joined #dri-devel
<DavidHeidelberg> anholt_: Hey! Is this chance expected when going 6.4 -> 6.6 kernel: https://gitlab.freedesktop.org/mesa/mesa/-/jobs/51580478#L764 ?
gouchi has quit [Remote host closed the connection]
alatiera has quit [Quit: Connection closed for inactivity]
libv has joined #dri-devel
libv_ has quit [Ping timeout: 480 seconds]
<dj-death> is there anywhere in the kernel that specifies what clock is used for the drm_syncobj waits ?
<dj-death> looks like it's CLOCK_PROCESS_CPUTIME_ID
crabbedhaloablut has quit []
a1batross has joined #dri-devel
pcercuei has quit [Quit: dodo]
luben has joined #dri-devel
jeeeun84135190 has quit [Read error: Connection reset by peer]
jeeeun84135190 has joined #dri-devel