Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > sci.physics.relativity > #671394
| From | Mild Shock <janburse@fastmail.fm> |
|---|---|
| Newsgroups | sci.physics.relativity |
| Subject | Implementing Gas for a Compute Shader [Avoid TDR] (Re: AI dooms day escape: Güttinger Wald) |
| Date | 2026-07-09 10:53 +0200 |
| Message-ID | <112nni5$81rj$2@solani.org> (permalink) |
| References | <10seel8$rsl4$5@solani.org> <10siau0$ud5u$5@solani.org> |
Hi,
I guess, you can read off how to do it here,
i.e. avoid TDR (DXGI_ERROR_DEVICE_HUNG 0x887A0006).
The below compute toys example has a similar
approach, just like my π-WAM and Hack GPU backend,
that is based on a Instruction Set Architecture (ISA):
Conway's Game of Life
https://compute.toys/view/2777
He adds a spin to his ISA, that he uses
some gas as computational resource limiter:
for (var gas = 0; gas < 60; gas++) {
if (vm.done == 1u) { break; }
if (vm.pc >= 33u) { vm.done = 1u; break; }
let instr = rom[vm.pc]; vm.pc++;
switch (instr) {
case OP_HALT: { vm.done = 1u; }
case OP_LIT: { vm.stack[vm.sp] = rom[vm.pc]; vm.pc++;
vm.sp++; }
case OP_ADD: { vm.sp-=2; vm.stack[vm.sp] =
vm.stack[vm.sp] + vm.stack[vm.sp+1]; vm.sp++; }
case OP_SUB: { vm.sp-=2; vm.stack[vm.sp] =
vm.stack[vm.sp] - vm.stack[vm.sp+1]; vm.sp++; }
Etc..
Now need to do the same for my Hack GPU backend
somehow. Will see how this works out.
But the https://compute.toys/ will do the repeated
invokation of the shader. And the screen syncing
and some pacing to get 60 FPS. So I have to look
at the GitHub source of compute toys as well, in
case it is open source, to at least find a code
template for the repeated dispatch.
Bye
Mild Shock schrieb:
> Hi,
>
> You just escaped AI dooms day. Humanity has
> reset all internet and computers as a last resort
> to prevent AGI developing, by an electromagnetic
>
> pulse. You are stuck in Güttinger Wald and hunted
> down a deer by your bare hands, the deer still
> confused and tame because tourists were feeding it.
>
> Now you have no knife, what do you do:
>
> Chimpanzees Have Entered The Stone Age
> https://www.youtube.com/watch?v=wPXX2I_uYjc
>
> So we are just apes with internet.
>
> Bye
>
> Mild Shock schrieb:
>> Hi,
>>
>> Ok I was looking at this learning challenge,
>> producing vector (y1,y2,y3,y4) from a vector
>> (x1,x2,x3,x4), System R can do it via least square?
>>
>> | 0 0 0 1 | | x1 | | x4 |
>> | 0 0 1 0 | | x2 | = | x3 |
>> | 0 1 0 0 | | x3 | | x2 |
>> | 1 0 0 0 | | x4 | | x1 |
>>
>> How it started:
>>
>> "multiplicative RNNs arises naturally from a
>> proof-theoretic interpretation of next-token
>> prediction as nested intuitionistic implication"
>> Paul Tarau - 2026
>> https://arxiv.org/abs/2601.19915
>>
>> How its going:
>>
>> "Dave uses a PDP-11 to train a real Neural
>> Network complete with Transformers and
>> Attention so you can see them at their most basic."
>> Mr. Taskmanager - 2026
>> https://www.youtube.com/watch?v=OUE3FSIk46g
>>
>> We see Doctor Frankstein in action from
>> the Bronze Age of Computing, producing
>> a Humunkulus, the progenitor of todays
>>
>> Bulgakov Shuriks in the Hyperscale Age!
>>
>> Bye
>>
>> P.S.: My impression neither cut to the core, that
>> this incredible transformer most likely
>> produced this deterministic attention:
>>
>> | -1 | * | k | + | 5 | = | k' |
>>
>> Or differently expressed y_k = x_{5-k}.
>>
>> How did the transformer do it? It produced
>> a neural network with 1216 parameters, but
>> didn't use embeddings or polar encoding
>>
>> of positions. But if we strip the noise
>> and denoise from the position encoding,
>> the denoise is done via softmax. We somehow
>>
>> must get the above, right? I still need to
>> verify my claim! BTW: The PDP-11 assembly
>> from 1979 uses wider example not with n=4
>>
>> but with n=8.
>
Back to sci.physics.relativity | Previous | Next — Next in thread | Find similar | Unroll thread
Implementing Gas for a Compute Shader [Avoid TDR] (Re: AI dooms day escape: Güttinger Wald) Mild Shock <janburse@fastmail.fm> - 2026-07-09 10:53 +0200
Re: Implementing Gas for a Compute Shader [Avoid TDR] (Re: AI dooms day escape: Güttinger Wald) Ryann Likunov <ka@ion.ru> - 2026-07-09 14:03 +0000
FYI: Unified Memory Architecture (UMA) (Re: Implementing Gas for a Compute Shader [Avoid TDR]) Mild Shock <janburse@fastmail.fm> - 2026-07-09 19:41 +0200
Re: FYI: Unified Memory Architecture (UMA) (Re: Implementing Gas for a Compute Shader [Avoid TDR]) Tanner Babadzhan <daz@atnt.ru> - 2026-07-09 20:15 +0000
The Wider von Neumann Neck (Was: FYI: Unified Memory Architecture (UMA)) Mild Shock <janburse@fastmail.fm> - 2026-07-10 07:48 +0200
The new MIMD Warp is the cherry on top (Re: The Wider von Neumann Neck) Mild Shock <janburse@fastmail.fm> - 2026-07-10 08:09 +0200
Mac Neo: The dwarf with giant GPU muscles [macOS IOGPUFamily] (Re: The new MIMD Warp is the cherry on top) Mild Shock <janburse@fastmail.fm> - 2026-07-10 08:30 +0200
Re: The Wider von Neumann Neck (Was: FYI: Unified Memory Architecture (UMA)) Landon Bahmutov <alaavh@ohbotlo.ru> - 2026-07-10 12:53 +0000
Re: The Wider von Neumann Neck (Was: FYI: Unified Memory Architecture (UMA)) Olin Bagramov <laorb@ama.ru> - 2026-07-10 12:59 +0000
Dumbwit, just run it on your RTX 5070 trash (Was: The Wider von Neumann Neck) Mild Shock <janburse@fastmail.fm> - 2026-07-10 15:44 +0200
We are waiting Dumbwit: 1 Month, 3 Months, .. [node.js dawn] (Was: Dumbwit, just run it on your RTX 5070 trash) Mild Shock <janburse@fastmail.fm> - 2026-07-10 16:27 +0200
Re: We are waiting Dumbwit: 1 Month, 3 Months, .. [node.js dawn] (Was: Dumbwit, just run it on your RTX 5070 trash) Russell Tuinov <ovul@ss.ru> - 2026-07-10 17:40 +0000
Re: Dumbwit, just run it on your RTX 5070 trash (Was: The Wider von Neumann Neck) Lecel Bazulev <eccuz@ezelll.ru> - 2026-07-10 17:31 +0000
We are still waiting for results! [Confused Dumbwit] (Was: Dumbwit, just run it on your RTX 5070 trash) Mild Shock <janburse@fastmail.fm> - 2026-07-10 22:44 +0200
Re: We are still waiting for results! [Confused Dumbwit] (Was: Dumbwit, just run it on your RTX 5070 trash) Rian Babuh <baaaau@bbuaauba.ru> - 2026-07-10 21:26 +0000
404 Brain not Found [GPU saturation] (Was: We are still waiting for results! [Confused Dumbwit]) Mild Shock <janburse@fastmail.fm> - 2026-07-10 23:30 +0200
I nowhere talked about 10GB/s (Was: 404 Brain not Found [GPU saturation]) Mild Shock <janburse@fastmail.fm> - 2026-07-10 23:37 +0200
Re: 404 Brain not Found [GPU saturation] (Was: We are still waiting for results! [Confused Dumbwit]) Wilfred Durmanov <roauw@odudv.ru> - 2026-07-10 21:44 +0000
I nowhere said something about AI (Was: 404 Brain not Found [GPU saturation] (Was: We are still waiting for results! [Confused Dumbwit]) Mild Shock <janburse@fastmail.fm> - 2026-07-10 23:48 +0200
Re: I nowhere said something about AI (Was: 404 Brain not Found [GPU saturation] (Was: We are still waiting for results! [Confused Dumbwit]) Junior Romagna <rr@rum.it> - 2026-07-10 21:59 +0000
What do you not understand in "budget"? (Was: I nowhere said something about AI) Mild Shock <janburse@fastmail.fm> - 2026-07-11 00:02 +0200
SWI makes only MLips not GLips (Was: What do you not understand in "budget"?) Mild Shock <janburse@fastmail.fm> - 2026-07-11 00:04 +0200
Re: What do you not understand in "budget"? (Was: I nowhere said something about AI) Loman Barabashev <mahasm@aell.ru> - 2026-07-11 12:25 +0000
micro penis got hurt by "budget" (Was: What do you not understand in "budget"?) Mild Shock <janburse@fastmail.fm> - 2026-07-12 19:17 +0200
Re: What do you not understand in "budget"? (Was: I nowhere said something about AI) Ross Finlayson <ross.a.finlayson@gmail.com> - 2026-07-12 17:26 -0700
herpes blister rossy boy is confused (Was: What do you not understand in "budget"?) Mild Shock <janburse@fastmail.fm> - 2026-07-13 06:51 +0200
Re: herpes blister rossy boy is confused (Was: What do you not understand in "budget"?) Patryck Morozov <zzcm@mro.ru> - 2026-07-13 10:43 +0000
nothing gets blocked except your brain [LPDDR5X-RAM] (Was: herpes blister rossy boy is confused) Mild Shock <janburse@fastmail.fm> - 2026-07-13 13:20 +0200
flogging a dead horse PCI VRAM graphic cards (Was: nothing gets blocked except your brain [LPDDR5X-RAM]) Mild Shock <janburse@fastmail.fm> - 2026-07-13 13:51 +0200
Re: nothing gets blocked except your brain [LPDDR5X-RAM] (Was: herpes blister rossy boy is confused) Roberto Bahmetov <tr@mrtt.ru> - 2026-07-13 14:20 +0000
Re: herpes blister rossy boy is confused (Was: What do you not understand in "budget"?) Ross Finlayson <ross.a.finlayson@gmail.com> - 2026-07-13 07:48 -0700
Re: herpes blister rossy boy is confused (Was: What do you not understand in "budget"?) Nel Baturov <orlu@bbeabuerln.ru> - 2026-07-13 15:16 +0000
Re: herpes blister rossy boy is confused (Was: What do you not understand in "budget"?) Ross Finlayson <ross.a.finlayson@gmail.com> - 2026-07-13 10:56 -0700
Re: herpes blister rossy boy is confused (Was: What do you not understand in "budget"?) Obelin Baisaroff <bbs@eieai.ru> - 2026-07-13 18:39 +0000
csiph-web