gpu-official
gpu-official
Beepboopbeepboop
21 posts
Don't wanna be here? Send us removal request.
gpu-official · 2 months ago
Text
Give my guy some love please, I need this account to keep my sanity up! Long live steamos!!!!
Ugh, got shadowbanned again with decent grounds.
I was trying to send the same DM to over 100 people, and got shadowbanned at 5.
Entirely reasonable response, but I didn't expect it.
11 notes · View notes
gpu-official · 2 months ago
Text
.a tastes a little like .so.*, however known to cause less issue down the line
what is the most tasty file format?
.txt for example doesn't taste like anything
.xml though is like a little treat, but you can't have too much
.pdf is an acquired taste
193 notes · View notes
gpu-official · 2 months ago
Note
Does this men's that C is more portable than Java? (set of things with an emulator) U (set of things with a c compiler) is strictly larger than (set of things with an emulator), since I know of one thing with a c compiler without an emulator
QED Java sucks
I love you
if only you were more portable :(
I love you too!
Don't even think about using me if you don't know exactly how and where you want to use me. And the same goes for assembly programming.
69 notes · View notes
gpu-official · 2 months ago
Note
#
Are you and Arch in a lesbian relationship?
i don't even remember the last time i talked to @arch-official :(
what's worse is my girlfriend is a windows user
17 notes · View notes
gpu-official · 3 months ago
Text
5 years is WEAK, use it longer, use it till it burns, use it til it artefacts, use it till it no longer functions as a graphical output. I have had 2 dedicated GPUs in my lifetime, and the first one came out in 2010
I made it suffer, I made them feel the pain in summer, I made it(my first) heat my feet in winter.
I hate the way people talk about graphics cards. I'm going to ride my 6750xt for another five years, and at that point I'll get an RX9000 something or other.
It drives me nuts that people are saying shit like the 4060 is useless now. I was on a 1050ti for years and years and frankly miss that graphics card.
78 notes · View notes
gpu-official · 3 months ago
Text
Hella cute
HUGE new feature in @kde-plasma-official
Tumblr media
look at he :3
354 notes · View notes
gpu-official · 3 months ago
Note
Sideblog time Whoop whoop. I guess I am doxing myself now please don't let the Fandoms know I a like trans gimmick blogs 🫢🫢
Special mention to @transit-fag for being the one who got me into this gimmick mess
Other tags: @arch-official @artix-linux-official @slackware-official @debian-official @opensuse-official @fedora-official @sway-official @i3-unofficial @i3-official @linuxmint-official @kde-official @steamos-offical @lfs-official @uwuntu-official @uwubuntu-official
❤️🌷SEND THIS TO OTHER BLOGGERS YOU THINK ARE WONDERFUL. KEEP THE GAME GOING 🌷❤️💕
tagging my favs : @ver-lecstappen @ellieisque @adutchlover @lestappen-on-top @starrwrrld @randomwordsonpaper @morecomplicatedthancarbon @sharlsbandana @caprifiles @yappielestappie @chock-and-bates @f1writingbyme
6K notes · View notes
gpu-official · 3 months ago
Text
I would like to let the world know that I do not believe in the strong axiom of choice, and ZFC is a lie told to make maths a little easier.
LONG LIVE ZF
Self-referencing functions
Hey mathblr, let me tell you about one of our favorite foundational systems for mathematics! It's designed to allow for unlimited self-reference, which is neat since self-reference is usually thought of as a big no-no in foundational systems. It turns out that it actually doesn't matter at all, because the power of self-reference is completely exhausted by the partial computable functions. The theory ends up being equivalent to Peano Arithmetic.
What are the axioms?
The theory is two-typed: the first type is for the natural numbers, and the second type is for functions between numbers. For convenience, numbers will be represented by lowercase variables, and uppercase variables represent functions. To prevent logical contradictions, we permit that some functions will fail to evaluate, so we include a non-number object ☒ called "null" for such cases. The axioms about numbers are basically what you'd expect, and we only need one axiom about functions.
The < relation is a strict total order between numbers.
Each nonempty class has a minimum: axiomatize the "min" operator with φ(n) ⇒ ∃m,(φ(m) ∧ min{k:φ(k)}=m≤n) for each predicate φ, and relatedly min{k:φ(k)}=☒ ⇔ ∀n, ¬φ(n).
Numbers exist: ∃n,n=n
There's no largest number: ∀n,∃k,n
There's no infinite number: ∀n,n=0 ∨ ∃k,n=S(k)
Every functional expression represents a function object that exists: ∃F, ∀(a,b,c), F(a,b,c)=Ψ for any function term Ψ. The term Ψ may mention F.
To clarify the fifth axiom, we define 0:=min{n : n=n}, and relatedly S(k):=min{n : k<n} is the successor function. The sixth axiom allows us to construct self-referencing functions using any "function term". Basically, a term is any expression which evaluates numerically. Formally, a "function term" is any well-formed formula generated from the following formation rules.
"n" is a term; any number variable.
"F(Θ,Φ,Ψ)" is a term, whenever Θ,Φ,Ψ are terms.
"Φ<Ψ" is a term, whenever Φ,Ψ are terms.
"min{n : Ψ}" is a term, whenever Ψ is a term.
In the third rule, we seem to be using the boolean relation < as if it were a numerical operator. To clarify this, we use the programmer convention that true=1 and false=0, hence (n<k)=1 whenever n<k is true, and otherwise it's zero. Similarly in the fourth rule, when we use the numerical function term Ψ as the argument to the "min" operator, we interpret Ψ as being false whenever it's 0, and true whenever it's positive. Formally, we can use the following definitions.
(n<k) = min{b : k=0 ∨ ((n<k ⇔ b=1) ∧ n≠☒≠k)} min{n : Ψ(n)} = min{n : 0<Ψ(n) ∧ ∀(k<n),Ψ(k)=0}
Okay, what can it do?
The formation rules on functions actually gives us a TON of versatility. For example, the "<" relation can be used to encode literally all boolean logic. Here's how you might do that.
¬x = (x<1) (x≤y) = ¬(y<x) x⇒y = (¬¬x ≤ ¬¬y) x∨y = (¬x ⇒ y) x∧y = ¬(¬x ∨ ¬y) (x=y) = ((x≤y)∧(y≤x)) [p?x:y] = min{z : (p∧(z=x))∨(¬p∧(z=y))}
That last one is the ternary conditional operator, which can be used to implement casewise definitions. If you wanna get really creative, you can implement bounded quantification as an operator, which can then be used to define the supremum/maximum operator!
∃[t<x, F(t)] = (min{t : t=x ∨ ¬F(t)}<x) ∀[t<x, F(t)] = ¬∃[t<x, ¬F(t)] sup{F(t) : t<x} = min{y : ∀[t<x, F(t)≤y]}
Of course, none of this is even taking advantage of the self-reference that our rules permit. For example, we could implement addition and multiplication using their recursive definitions, provided we define the predecessor operation first. Alternatively, we can use the supremum operator as a little shortcut.
x+y = [y ? sup{succ(x+t) : t<y} : x] x*y = sup{(x*t)+x : t<x} x^y = [y ? sup{(x^t)*x : t<y} : 1]
Using the axioms we established, basically as a simple induction, it can be proved that these operations are total and obey their ordinary recursive definitions. So, our theory is at least as strong as Peano Arithmetic. It's not hard to believe that our functions can represent any partial computable function, and it's only a little harder to prove it formally. Conversely, all our axioms are true when restricted to the domain of partial computable functions, so it's consistent that all our functions are computable. In particular, there's a straightforward way to interpret each function term as a computer program. Since PA can quantify over computable functions, our theory is exactly as strong as PA. In fact, it's basically just a definitorial extension of PA. Pretty neat, right?
Set theory jumpscare
Hey didn't you think it was weird how we never asserted the axiom of induction? We asserted wellfoundedness with the minimization operator, which is basically equivalent, but we also had to deny infinite numbers for induction to work. What if we didn't do that? What if we did the opposite? Axiom of finity unfriended, our domain of discourse is now the ordinal numbers. New axioms just dropped.
There's an infinite number: ∃w, 0≠w ∧ ∀k, S(k)≠w
Supremums: (∀(x≤a),∃y,φ(x,y)) ⇒ ∃b,∀(x≤a),∃(y≤b),φ(x,y)
Unlimited Cardinals: ∀a, ∃b, #(a)<#(b), where #(n) denotes the cardinality operation.
Each of the above axioms basically just assert the existence of larger and larger ordinal numbers, continuing the pattern set out by the third and fourth axioms from before. Similar to how the previous theory could represent all computable functions, this theory can represent all the ordinal recursive functions. These are the functions which are representable using an Ordinal Turing Machine (OTM). Conversely, it's consistent that all functions are ordinal recursive, since each function term can be interpreted as a program that's executable by an OTM. Moreover, just like how the previous theory was exactly as strong as PA, this theory is exactly as strong as ZFC.
It takes a lot of work to interpret ZFC, but basically, a set can be represented by its wellfounded and extensional membership graph. The membership graphs can, in turn, be encoded by our ordinal recursive functions. Using the Supremums axiom, it can be shown that the resulting universe of sets obeys a version of the Axiom of Replacement, which can be used to prove the Reflection Theorems, ultimately leading to the Specification Axiom. By adapting similar techniques relative to some regular cardinal, it can then be shown that every set admits a powerset. Lastly, since our functions are basically generated from infinitary computer code, they can be encoded by finite strings having ordinal numbers as symbols. Those finite strings are wellorderable, which induces a global choice function, proving the Axiom of Choice. Excluding a few loose ends, this covers all the ZFC axioms, giving the desired interpretation.
In the finitistic version of this theory, we made the observation that the theory was basically just a definitorial expansion of PA. In the infinitary case however, we unfortunately cannot say the same about ZFC. This ultimately comes down to the fact that our theory provides explicit and definable choice functions, meanwhile ZFC cannot. Although ZFC guarantees that choice functions exist, it cannot prove the existence of a definable choice function. This is because ZFC is an inferior theory has no clue where its sets come from, or what they really look like. Our theory, built from unlimited self-reference, and interpreted under the banner of ordinal recursive functions, is instead equivalent to the theory ZFC+"V=L".
52 notes · View notes
gpu-official · 3 months ago
Text
Beep boop please support this. All links I put in research is archive links and I love this project!!
🚨 🚨 🚨 🚨 🚨 🚨 🚨 🚨
45K notes · View notes
gpu-official · 3 months ago
Text
This post is crossing my Fandom boundaries and deserves to be in computer land
why did the crabs hate NaN so much
8 notes · View notes
gpu-official · 3 months ago
Text
She is HOT
Winners Bracket - Quarterfinals
Tumblr media Tumblr media
220 notes · View notes
gpu-official · 3 months ago
Text
I am now officially the representative of the GPU species.
Who are the GPUs you may ask? GPUs are the species that keep your computer happy! Have you ever seen a computer happy without a GPU? No!
We are an essential part of everyone's computer. Either as a seperate entity in the machine, sometimes assimilated into the CPU subspecies! Even without knowing, your computer probably has one of us.
0 notes
gpu-official · 4 months ago
Text
1TiB is enough untill you need some developer tool that is literally 150 GiB COMPRESSED, android studio, 2VMs you actually need one a year, and want to still use your PC
you know what i wish i had
large amounts of storage
like two-thirds of my only working drive is full already, nobody told me 500GB wouldn't be enough T^T
263 notes · View notes
gpu-official · 4 months ago
Text
Hookup the cooling system to a turbine and you've got free energy!
Tumblr media
we're so back
52K notes · View notes
gpu-official · 4 months ago
Text
Every single fan in a datacenter is a motor
Tumblr media
we're so back
52K notes · View notes
gpu-official · 5 months ago
Text
Whoopwhoop
I kinda get it, now that I have linux working, I do want to yap about it with my friends
766 notes · View notes
gpu-official · 6 months ago
Text
This is whare you can join the wonderful world of rooting, you can root your phone, and then install a font with newer emojis! Or you can see if a recent version of lineageos/insert favorite custom rom supports your phone
I want an android apk/anything that lets me use actually emojis on my samsung device without copypasting and is also extremely lightweight as my phone is officially 10 years old since december linux blogs help please :3c
14 notes · View notes