Earlier quoted context omitted.
I don't know. This sounds very computer-sciency-ish. We build smaller tools to help build big things. Now the big things are so good and versatile we can replace our smaller tools with the big things too. With the more powerful tools, we can build even bigger things. It is just compiler bootstrapping happening in hardware world.
The problem is that there's so much unexplored territory in operating system design. "Everything is a file" and the other *nix assumptions are too often just assumed to be normal. So much more is possible.
Tales of the M1 GPU
111–120 of 390 posts
Re: Tales of the M1 GPU
#112Earlier quoted context omitted.
It’s like a full time filter where the only online identity someone presents is as an anime girl. I think it was popularized by a company called HoloLive that has Japanese girls do this as a full time job? It’s a VERY niche culture thing. Check out the Asahi Lina channel to see what I mean. https://m.youtube.com/watch?v=LonzMviFCNs
Surprisingly it is not that niche anymore - for example, the hololive subreddit has 800,000 subscribers which is about half of the hockey subreddit.
It’s not needed for guys apparently, but it’s not niche.
Re: Tales of the M1 GPU
#113watching a virtual persona stream their development of their M1 GPU drivers is one of the most cyberpunk things I've ever seen! it's easy to forget that this world is looking closer and closer to those dreamed up by Gibson, Stephenson, etc. what a time to be alive.
I like your optimism, but it seems more like a Phillip K. Dick novel to me. >In 2021, society is driven by a virtual Internet, which has created a degenerate effect called "nerve attenuation syndrome" or NAS. Megacorporations control much of the world, intensifying the class hostility already created by NAS. from Johnny Mnemonic What can we do to make it more utopian?
I don't think someone sharing their craft through a virtual avatar is any more responsible for these things than the flying cars from Blade Runner would be.
Re: Tales of the M1 GPU
#114Earlier quoted context omitted.
Don't forget to dissociate the concept of virtual worlds which already exist and are quite popular (MMOs etc.), and the idea of a virtual world owned and imagined by Zuckerberg which has been a terrible failure so far.
The opinions around facebook’s metaverse are hilarious when things like Second Life, WoW, EVE, VR Chat, and even Roblox have been so massively popular yet unrecognized for what they are.
Re: Tales of the M1 GPU
#115watching a virtual persona stream their development of their M1 GPU drivers is one of the most cyberpunk things I've ever seen! it's easy to forget that this world is looking closer and closer to those dreamed up by Gibson, Stephenson, etc. what a time to be alive.
Which is what Zuck is trying to get us all into with the Meta, but the world is not ready yet.
Re: Tales of the M1 GPU
#116Earlier quoted context omitted.
Quoted post unavailable.
Let's not head down this direction of madness please. I've followed Japanese vtubers for some time and that is CERTAINLY not the case. Vtubers are just aliases for the real person. And each person picks and chooses how much they blend their real lives into that alias. There are even some vtubers that will have a camera facing on themselves while they stream as a vtuber (for example stream their body, but not their fa…
That's not a legal requirement, it's a carrier request.
> For example on iPhone in Japan it is impossible to silence the shutter sound effect without modifying the device hardware.
That now turns off once you take them out of the country though.
Re: Tales of the M1 GPU
#117The fact so much hardware these days is running a full real-time OS all the time annoys me. I know it is normal and understandable but everything is such a black box and it has already caused headaches (looking at you, Intel).
This isn't even that new of a thing. The floppy disk drive sold for the Commodore 64 included it's own 6502 CPU, ROM, and RAM. This ran its own disk operating system[1]. Clever programmers would upload their own code to the disk drive to get faster read/writes, pack data more densely on the disk, and even copy protection schemes that could validate the authenticity of a floppy. 1: https://en.wikipedia.org/wiki/Commod…
Re: Tales of the M1 GPU
#118Earlier quoted context omitted.
The opinions around facebook’s metaverse are hilarious when things like Second Life, WoW, EVE, VR Chat, and even Roblox have been so massively popular yet unrecognized for what they are.
The difference between Facebooks Meta and other worlds is the difference between getting a billion+ people into the same virtual world. How big is Second Life? or Roblox?
Re: Tales of the M1 GPU
#119Is anyone porting the GPU driver to Windows?
I think there's larger barriers to getting windows running on Apple Silicon that would need to be addressed first. For one example, Windows ARM kernels are pretty tied to the GIC (ARM's reference interrupt controller), but Apple has its own interrupt controller. Normally on ntoskrnl this distinction would simply need hal.dll swapped out, but I've heard from those who've looked into it that the clean separation has br…
What you can do is having a small hypervisor to simulate the needed bits…
Re: Tales of the M1 GPU
#120Earlier quoted context omitted.
It would take more than a GPU Driver, or actually, drivers at all. Windows has some behavior that is hard-coded and cannot be changed except by Microsoft. This behavior can fairly easily be bent on Linux, but Windows drivers can't bend the rules for some of these issues. The biggest issue that immediately comes to mind is that the M1 MMU (Memory Management Unit) only can handle 16K pages. Linux can easily be built fo…
In https://asahilinux.org/2022/03/asahi-linux-alpha-release/ it says that 4k pages work on the HW but 16k has tome advantages. Dropping 4k page size supporrt would imply a departure from arm architecture compatibility compatibility I think, it might have also nontechnical problems (ARM license).