LeviYun has quit [Read error: Connection reset by peer]
jsa has joined #dri-devel
warpme has joined #dri-devel
LeviYun has joined #dri-devel
pcercuei has joined #dri-devel
clarifiedonce has joined #dri-devel
warpme has quit []
<clarifiedonce>
I've been testing the execution logic and surprise surprise i dunno what i wrote before it was fuzzed in parallel universe. but one needs to add operands to subtrahend too. 443+72+883=1398-184-443-256=515 but if you remove 883 from the minuend it comes back as 512 so 1398-72-443-256-115=512, samewise with 446+70+888-186-446-256=516 446+70+888-70-443-256-120=512, so one just removes the
<clarifiedonce>
883 or 886 from minuent at pc X to get the io to be decoded and written.
<clarifiedonce>
data banks as per FileSystem is the most interesting part, i would not say it's my most brilliant engineering, as there could be other ways, but i am proud of that as per what i did there still.
<clarifiedonce>
so i write a filesystem for unlimited memory yeah, or compressed scala/java sets, and this low-power execution and compiler, consisting of encoder, decoder, + - compressed intrinsics, io carver/indexer writer and compiler and execution procedures, this works in tandem with filesystem format. And grants something such as couple of years of battery cycles if the whole kernel is lifted to
<clarifiedonce>
that paradigm. I have some code snippets, for an example the negative pairs of a set is available on the net, i copied that code, and the sekeleton of this stuff is also largely available as of now. But i intend to cover my debts which are small at this point, and upcoming years i look if i can release some code to the world. It'd be useful for overconsumption limiting.
<clarifiedonce>
But as to about the war, i am unsure if that is the right direction, my ass in untouched so far ok, but i look at this conflict as to losing our white allies , cause neither russians nor ukranians are considered garbage in my book, and they are white as me, and largely intelligent inhabitants on our planet, i think it's a huge chaos ready to enter cause of this bad stuff. Next thing
<clarifiedonce>
over we are unstoppably invaded into by asians, arabic , hindi's , chinease etc. and we have nothing to do not to get to more bottom and bottom etc.
<clarifiedonce>
africans are too poor, but those are very annoying too
guludo has joined #dri-devel
<clarifiedonce>
quaora has disturbing images of beliefs in the world, how they with rocks and burning procedures , hanging and execute their own people, sometimes fraudlently, men it's not ours traditions, white people are different and should stick to their allies not kill each other.
<clarifiedonce>
it's carazy so we build aircrafts , military equipment , and we explode eachother using them, that makes zero sense to me! We build such tech to defend our ehtnic groups, makes perfect sense to me.
MrCooper has joined #dri-devel
<clarifiedonce>
i stepped out from this demonstration where my so called girl wanted to screw abusive and arrogant people, who invest no pennies no sanity or provide value to tourism attractions, but only command and humiliate others and make their porn at spot, i just stepped out from that show, we invested into this hotel, no one wants to visit, it was poor investement i can not allow doing same
<clarifiedonce>
cause i blame these people for it, they risk with nothing and only fabricate charges based of their fuckshows, but that is not a reason to kill them, it's always possible to just split up and never deal with abuse africans , abuse vikings and alike.
karolherbst has joined #dri-devel
<clarifiedonce>
so in terms of the larger people, the cultural differences are so big, that whites have to make an alliance with whites, nothing with those nigerians happened to come down to correct path, they scammed everyone , but i stepped out right away, cause we do not expect heroics by uneducated people.
<clarifiedonce>
that my girlfriend screwed them was her own choice, and she can do it without my permission, it's just i do not want her back anymore after such abuse.
clarifiedonce was kicked from #dri-devel by ChanServ [You are not permitted on this channel]
mripard is now known as Guest5769
mripard has joined #dri-devel
LeviYun has quit [Read error: Connection reset by peer]
Guest5769 has quit [Ping timeout: 480 seconds]
feaneron has quit [Read error: No route to host]
glennk has joined #dri-devel
bmodem has quit [Ping timeout: 480 seconds]
heat has joined #dri-devel
LeviYun has joined #dri-devel
feaneron has joined #dri-devel
warpme has joined #dri-devel
croissant_ has joined #dri-devel
croissant has quit [Ping timeout: 480 seconds]
<Lynne>
is there any way or are there any hacks I can do to get the address of a local array in glsl?
<Lynne>
I have a function that takes a uint64_t address, and I just need a scratch 32-byte array for a single instance
nerdopolis has joined #dri-devel
<Lynne>
allocating and assigning a descriptor or push addr for 32 bytes is too much
LeviYun has quit [Ping timeout: 480 seconds]
<pendingchaos>
Lynne: no, I don't think there is
<Lynne>
sad, guess I'll stuff it into an array and waste a descriptor
<Lynne>
whoever designed the buffer reference extension did it just before they left on a friday night with all their friends yelling "come on I won the lottery we're going pub crawling, drinks on me"
LeviYun has joined #dri-devel
<glehmann>
the thing is, local arrays might not map to the same hw mechanism as buffer device address
<glehmann>
so it's not like this is just an oversight, supporting this case is a ton of work and it might result in sub optimal performance
<karolherbst>
global address also means it's accesible by every thread which local arrays defiently are not
<Lynne>
I need it accessible by a single thread
Daanct12 has quit [Quit: WeeChat 4.4.2]
bolson has joined #dri-devel
LeviYun has quit [Ping timeout: 480 seconds]
LeviYun has joined #dri-devel
<karolherbst>
sure, but glsl doesn't have pointer semantics at all, so you might want to rework the function to allow an alternative interface and wrap the one over the other. But anyway, this isn't something which can easily be fixed in glsl.
<karolherbst>
CL C has it, and it has 4 distinct memory spaces as a result and an optional tagged pointer feature. it's a lot of work
mbrost has joined #dri-devel
LeviYun has quit [Ping timeout: 480 seconds]
jsa has quit [Ping timeout: 480 seconds]
LeviYun has joined #dri-devel
<glehmann>
I think glsl allows arrays as function params, so you can pass local arrays to it and if you deference the bda pointer that can also be passed as an array?
<glehmann>
obviously that means you can't do pointer arithmetic in the function tho
kzd has joined #dri-devel
<karolherbst>
arrays with an unspecified size as well? Because I suspevt that's what's needed here, but if not, yeah could just wrap the bda interface over an array one
rasterman has quit [Quit: Gettin' stinky!]
jsa has joined #dri-devel
mbrost_ has joined #dri-devel
LeviYun has quit [Ping timeout: 480 seconds]
LeviYun has joined #dri-devel
<Lynne>
nah, you can't pass unsized arrays as arguments
mbrost has quit [Ping timeout: 480 seconds]
tlwoerner has joined #dri-devel
LeviYun has quit [Ping timeout: 480 seconds]
LeviYun has joined #dri-devel
epoch101 has joined #dri-devel
fab has quit [Quit: fab]
LeviYun has quit [Ping timeout: 480 seconds]
LeviYun has joined #dri-devel
vliaskov has quit []
dsimic is now known as Guest5777
dsimic has joined #dri-devel
Guest5777 has quit [Ping timeout: 480 seconds]
YuGiOhJCJ has quit [Quit: YuGiOhJCJ]
LeviYun has quit [Ping timeout: 480 seconds]
oneforall2 has joined #dri-devel
LeviYun has joined #dri-devel
asrivats has joined #dri-devel
Duke`` has joined #dri-devel
LeviYun has quit [Ping timeout: 480 seconds]
tzimmermann has quit [Quit: Leaving]
mbrost_ has quit [Ping timeout: 480 seconds]
LeviYun has joined #dri-devel
fab has joined #dri-devel
LeviYun has quit [Ping timeout: 480 seconds]
mbrost has joined #dri-devel
warpme has quit []
kaiwenjon has quit [Quit: WeeChat 3.8]
cyrinux has quit []
cyrinux has joined #dri-devel
frieder has quit [Remote host closed the connection]
LeviYun has joined #dri-devel
rasterman has joined #dri-devel
lynxeye has quit [Quit: Leaving.]
LeviYun has quit [Ping timeout: 480 seconds]
LeviYun has joined #dri-devel
tobiasjakobi has joined #dri-devel
apinheiro has quit [Ping timeout: 480 seconds]
LeviYun has quit [Ping timeout: 480 seconds]
kaiwenjon has joined #dri-devel
iive has joined #dri-devel
LeviYun has joined #dri-devel
LeviYun has quit [Ping timeout: 480 seconds]
lstrano has joined #dri-devel
plutonione has quit [Remote host closed the connection]
fireburn has joined #dri-devel
jsa has quit [Ping timeout: 480 seconds]
sghuge has joined #dri-devel
jsa has joined #dri-devel
LeviYun has joined #dri-devel
gouchi has joined #dri-devel
LeviYun has quit [Ping timeout: 480 seconds]
LeviYun has joined #dri-devel
LeviYun has quit [Remote host closed the connection]
LeviYun has joined #dri-devel
fililip[m] has joined #dri-devel
LeviYun has quit [Ping timeout: 480 seconds]
sassefa has joined #dri-devel
biju has quit [Read error: Connection reset by peer]
fireburn has quit [Quit: Konversation terminated!]
apinheiro has joined #dri-devel
fililip[m] has quit []
rasterman has quit [Quit: Gettin' stinky!]
tobiasjakobi has quit []
fililip has joined #dri-devel
jsa has quit [Ping timeout: 480 seconds]
jsa has joined #dri-devel
LeviYun has joined #dri-devel
mbrost has quit [Ping timeout: 480 seconds]
LeviYun has quit [Ping timeout: 480 seconds]
mbrost has joined #dri-devel
LeviYun has joined #dri-devel
mbrost_ has joined #dri-devel
kaiwenjon has quit [Quit: WeeChat 3.8]
mbrost has quit [Ping timeout: 480 seconds]
jsa has quit [Ping timeout: 480 seconds]
glennk has quit [Read error: Connection reset by peer]
sukuna has quit [Remote host closed the connection]
sukuna has joined #dri-devel
LeviYun has quit [Ping timeout: 480 seconds]
mbrost has joined #dri-devel
<DavidHeidelberg>
eric_engestrom: any chance you could get 0f6fa4679d6705660b83579a20fb50cfad2c0184 (clean apply) to 24.1? Just tried to get older build running and clc stuff got me sadomasochistic experience
mvlad has quit [Remote host closed the connection]