There have been multiple accounts created with the sole purpose of posting advertisement posts or replies containing unsolicited advertising.

Accounts which solely post advertisements, or persistently post them may be terminated.

mlg ,
@mlg@lemmy.world avatar

Startup discovers what a northbridge is

tombruzzo ,

I don’t care. Intel promised 5nm 10ghz single core processors by this point and I still want it out of principle

probableprotogen ,

Gee its like all modern computers already have massively parallel processing devices built in.

blahsay ,

10 tricks to speed up your cpu and trim belly fat. Electrical engineers hate them! Invest now! Start up is called ‘DefinitelyNotAScam’.

qevlarr ,
@qevlarr@lemmy.world avatar

🚨 ⚠ 🚨 Hoax alert! 🚨 ⚠ 🚨

_sideffect ,

You can download more ram too!

Kazumara ,

The techradar article is terrible, the techcrunch article is better, the Flow website has some detail.

But overall I have to say I don’t believe them. You can’t just make threads independent if they logically have dependencies. Or just remove cache coherency latency by removing caches.

bitfucker ,

Can’t have cache latency if there is no cache!

StupidBrotherInLaw ,

So THIS is what the communists were talking about when they told me about the benefits of transitioning to a cacheless society!

downhomechunk ,

Overclockers:
“Give me some liquid nitrogen and I’ll make that 102x.”

over_clox ,

Meh, I just spit on it.

amanda ,
@amanda@aggregatet.org avatar

Has anyone been able to find an actual description of what this does? I clicked two layers deep and neither explains the details. It does sound like they’re doing CPU scheduling in the hardware, which is cool and makes some sense, but the descriptions are too vague to explain what the hell this is except “more parallelism goes brrrr” and it’s not clear to me why current GPUs aren’t already that.

Buffalox ,

Why is this bullshit upvoted?
Already the first sentence, they change from the headline “without recoding” to “with further optimization”.
Then the explanation “a companion chip that optimizes processing tasks in real-time”
This is already done at compiler level and internally in any modern CPU for more than a decade.

It might be possible to some degree for some specific forms of code, like maybe Java. But generally for the CPU this is bullshit, and the headline is decidedly dishonest.

xantoxis ,

This change is likened to expanding a CPU from a one-lane road to a multi-lane highway

This analogy just pegged the bullshit meter so hard I almost died of eyeroll.

rottingleaf ,

Apparently the percentage of people actually understanding what they are doing in the management part of the industry is now too low to filter out even such bullshit.

AnarchistArtificer ,

You’ve got to be careful with rolling your eyes, because the parallelism of the two eyes means that the eye roll can be twice as powerful ^1


(1) If measured against the silly baseline of a single eyeroll

Th4tGuyII ,
@Th4tGuyII@fedia.io avatar

The TL;DR for the article is that the headline isn't exactly true. At this moment in time their PPU can potentially double a CPU's performance - the 100x claim comes with the caveat of "further software optimisation".


Tbh, I'm sceptical of the caveat. It feels like me telling someone I can only draw a stickman right now, but I could paint the Mona Lisa with some training.

Of course that could happen, but it's not very likely to - so I'll believe it when I see it.

Having said that they're not wrong about CPU bottlenecks and the slowed rate of CPU performance improvements - so a doubling of performance would be huge in this current market.

barsquid ,

Putting the claim instead of the reality in the headline is journalistic malpractice. 2x for free is still pretty great tho.

barsquid ,

Just finished the article, it’s not for free at all. Chips need to be designed to use it. I’m skeptical again. There’s no point IMO. Nobody wants to put the R&D into massively parallel CPUs when they can put that effort into GPUs.

frezik ,

Not every problem is amenable to GPUs. If it has a lot of branching, or needs to fetch back and forth from memory a lot, GPUs don’t help.

Now, does this thing have exactly the same limitations? I’m guessing yes, but it’s all too vague to know for sure. It’s sounds like they’re doing what superscalar CPUs have done for a while. On x86, that starts with the original Pentium from 1993, and Crays going back to the '60s. What are they doing to supercharge this idea?

Does this avoid some of security problems that have popped up with superscalar archs? For example, some kernel code running at ring 0 is running alongside userspace code, and it all gets the same ring 0 level as a result.

Clusterfck ,

I get that we have to impress shareholders, but why can’t they just be honest and say it doubles CPU performance with the chance of even further improvement with software optimization. Doubling performance of the same hardware is still HUGE.

Zorque ,

They… they did?

Feathercrown ,

Not in the title

Zorque ,

They didn’t write the title.

Feathercrown ,

I don’t know what “they” you’re talking about, but I think it’s clear I’m referring to the person responsible for writing the original title. Not OP and not the article author if the publisher is choosing the title.

Zorque ,

And I think it’s pretty clear I’m not. And it seems pretty clear the OP wasn’t either.

So… are you just stating random things for the fuck of it, or did you have an actual reason for bringing up a non-sequitur?

Feathercrown ,

Was it though?

pop ,

I’m just glad there are companies that are trying to optimize current tech rather than just piling over new hardware every damn year with forced planned obsolescence.

Though the claim is absurd, I think double the performance is NEAT.

dustyData ,

This is new hardware piling. What they claim to do requires reworking manufacturing, is not retroactive with current designs, and demands more hardware components. It is basically a hardware thread scheduler. Cool idea, but it won’t save us from planned obsolescence, if anything it is more incentive for more waste.

MadMadBunny ,

Ah, good ol’ magic wishful thinking…

geomela ,

Hur Hur Hur… PPU

Coasting0942 ,

Others have already laughed at this idea, but on a similar topic:

I know we’ve basically disabled a lot of features that sped up the CPU but introduced security flaws. Is there a way to turn those features back on for an airgapped computer intentionally?

shundi82 ,

Haven’t used it in years, but it might still work:

www.grc.com/inspectre.htm

addie ,
@addie@feddit.uk avatar

The kernel option is mitigations=off, if you want to try adding it to your Grub command line? From the testing I’ve done, provides no benefits whatsoever - no more frames in games, compilation runs no quicker, battery life on a laptop is no better.

wiki.archlinux.org/title/Improving_performance#Tu…

Shadow ,
@Shadow@lemmy.ca avatar

Hmm, so sounds like they’re moving the kernel scheduler down to a hardware layer? Basically just better smp?

Chocrates ,

Processors have an execution pipeline, so a single command like mov has some number of actions the CPU takes to execute it. CPU designers already have some magic that allows them to execute these out of order as well as other stuff like pre calculating what they think the next command will probably be.

It’s been a decade since my cpu class so I am butchering that explanation, but I think that is what they are proposing messing with

LodeMike , (edited )

That’s accurate.

Its done through multiple algorithms, but the general idea is to schedule calculations as soon as possible, accounting for data hazards to make sure everything is still equivalent to non out of order execution. Individual circuits can execute different things at the same time. Special hardware is needed to make the algorithms work.

There’s also branch prediction which is the same thing kind of except the CPU needs a way to ensure if the prediction was actually correct.

  • All
  • Subscribed
  • Moderated
  • Favorites
  • [email protected]
  • random
  • lifeLocal
  • goranko
  • All magazines