m4r1k 3 hours ago

Google's real moat isn't the TPU silicon itself—it's not about cooling, individual performance, or hyper-specialization—but rather the massive parallel scale enabled by their OCS interconnects.

To quote The Next Platform: "An Ironwood cluster linked with Google’s absolutely unique optical circuit switch interconnect can bring to bear 9,216 Ironwood TPUs with a combined 1.77 PB of HBM memory... This makes a rackscale Nvidia system based on 144 “Blackwell” GPU chiplets with an aggregate of 20.7 TB of HBM memory look like a joke."

Nvidia may have the superior architecture at the single-chip level, but for large-scale distributed training (and inference) they currently have nothing that rivals Google's optical switching scalability.

  • thelastgallon 2 hours ago

    Also, Google owns the entire vertical stack, which is what most people need. It can provide an entire spectrum of AI services far cheaper, at scale (and still profitable) via its cloud. Not every company needs to buy the hardware and build models, etc., etc.; what most companies need is an app store of AI offerings they can leverage. Google can offer this with a healthy profit margin, while others will eventually run out of money.

    • jauntywundrkind an hour ago

      Google's work on Jax, pytorch, tensorflow, and the more general XLA underneath are exactly the kind of anti-moat everyone has been clamoring for.

  • villgax 2 hours ago

    100 times more chips for equivalent memory, sure.

    • m4r1k 2 hours ago

      Check the specs again. Per chip, TPU 7x has 192GB of HBM3e, whereas the NVIDIA B200 has 186GB.

      While the B200 wins on raw FP8 throughput (~9000 vs 4614 TFLOPs), that makes sense given NVIDIA has optimized for the single-chip game for over 20 years. But the bottleneck here isn't the chip—it's the domain size.

      NVIDIA's top-tier NVL72 tops out at an NVLink domain of 72 Blackwell GPUs. Meanwhile, Google is connecting 9216 chips at 9.6Tbps to deliver nearly 43 ExaFlops. NVIDIA has the ecosystem (CUDA, community, etc.), but until they can match that interconnect scale, they simply don't compete in this weight class.

    • croon 2 hours ago

      Ironwood is 192GB, Blackwell is 96GB, right? Or am i missing something?

    • NaomiLehman 2 hours ago

      I think it's not about the cost but the limits of quickly accessible RAM

dana321 3 hours ago

That and the fact they can self-fund the whole AI venture and don't require outside investment.

  • jsheard 3 hours ago

    That and they were harvesting data way before it was cool, and now that it is cool, they're in a privileged position since almost no-one can afford to block GoogleBot.

    They do voluntarily offer a way to signal that the data GoogleBot sees is not to be used for training, for now, and assuming you take them at their word, but AFAIK there is no way to stop them doing RAG on your content without destroying your SEO in the process.

    • boredatoms an hour ago

      Do people still get organic search traffic from google?

    • lazyfanatic42 2 hours ago

      Wow, they really got folks by the short hairs if that is true...

  • mrbungie 3 hours ago

    The most fun fact about all the developments post-ChatGPT is that people apparently forgot that Google was doing actual AI before AI meant (only) ML and GenAI/LLMs, and they were top players at it.

    Arguably main OpenAI raison d'être was to be a counterweight to that pre-2023 Google AI dominance. But I'd also argue that OpenAI lost its way.

    • lvl155 3 hours ago

      And they forgot to pay those people so most of them left.

      • OccamsMirror 2 hours ago

        To be fair, they weren't increasing Ads revenue.

        • lvl155 2 hours ago

          They literally gave away their secret sauce to OpenAI and pretended like it wasn’t a big opportunity.

          • mrbungie 2 hours ago

            Just as expected from a big firm with slower organizational speed. They can afford to make those mistakes.

1980phipsi 2 hours ago

> It is also important to note that, until recently, the GenAI industry’s focus has largely been on training workloads. In training workloads, CUDA is very important, but when it comes to inference, even reasoning inference, CUDA is not that important, so the chances of expanding the TPU footprint in inference are much higher than those in training (although TPUs do really well in training as well – Gemini 3 the prime example).

Does anyone have a sense of why CUDA is more important for training than inference?

  • johnebgd 2 hours ago

    I think it’s the same reason windows is inportant to desktop computers. Software was written to depend on it. Same with most of the software out there today to train being built around CUDA. Even a version difference of CUDA can break things.

  • baby_souffle 2 hours ago

    That quote left me with the same question. Something about decent amount of ram on one board perhaps? That’s advantageous for training but less so for inference?

  • llm_nerd 2 hours ago

    It's just more common as a legacy artifact from when nvidia was basically the only option available. Many shops are designing models and functions, and then training and iterating on nvidia hardware, but once you have a trained model it's largely fungible. See how Anthropic moved their models from nvidia hardware to Inferentia to XLA on Google TPUs.

    Further it's worth noting that the Ironwood, Google's v7 TPU, supports only up to BF16 (a 16-bit floating point that has the range of FP32 minus the precision. Many training processes rely upon larger types, quantizing later, so this breaks a lot of assumptions. Yet Google surprised and actually training Gemini 3 with just that type, so I think a lot of people are reconsidering assumptions.

  • imtringued 2 hours ago

    When training a neural network, you usually play around with the architecture and need as much flexibility as possible. You need to support a large set of operations.

    Another factor is that training is always done with batches. Inference batching depends on the number of concurrent users. This means training tends to be compute bound where supporting the latest data types is critical, whereas inference speeds are often bottlenecked by memory which does not lend itself to product differentiation. If you put the same memory into your chip as your competitor, the difference is going to be way smaller.

  • NaomiLehman 2 hours ago

    inference is often a static, bounded problem solvable by generic compilers. training requires the mature ecosystem and numerical stability of cuda to handle mixed-precision operations. unless you rewrite the software from the ground up like Google but for most companies it's cheaper and faster to buy NVIDIA hardware

    • never_inline 2 hours ago

      > static, bounded problem

      What does it even mean in neural net context?

      > numerical stability

      also nice to expand a bit.

sbarre 3 hours ago

A question I don't see addressed in all these articles: what prevents Nvidia from doing the same thing and iterating on their more general-purpose GPU towards a more focused TPU-like chip as well, if that turns out to be what the market really wants.

  • timmg 3 hours ago

    They will, I'm sure.

    The big difference is that Google is both the chip designer *and* the AI company. So they get both sets of profits.

    Both Google and Nvidia contract TSMC for chips. Then Nvidia sells them at a huge profit. Then OpenAI (for example) buys them at that inflated rate and them puts them into production.

    So while Nvidia is "selling shovels", Google is making their own shovels and has their own mines.

    • m4rtink an hour ago

      So when the bubble pops the companies making the shovels (TSMC, NVIDIA) might still have the money they got for their products and some of the ex-AI companies might least be able to sell standard compliant GPUs on the wider market.

      And Google will end up with lots of useless super specialized custom hardware.

      • acoustics 18 minutes ago

        I think people are confusing the bubble popping with AI being over. When the dot-com bubble popped, it's not like internet infrastructure immediately became useless and worthless.

  • Workaccount2 2 hours ago

    Deepmind gets to work directly with the TPU team to make custom modifications and designs specifically for deepmind projects. They get to make pickaxes that are made exactly for the mine they are working.

    Everyone using Nvidia hardware has a lot of overlap in requirements, but they also all have enough architectural differences that they won't be able to match Google.

    OpenAI announced they will be designing their own chips, exactly for this reason, but that also becomes another extremely capital intensive investment for them.

    This also doesn't get into that Google also already has S-tier dataceters and datacenter construction/management capabilities.

  • fooker 3 hours ago

    That's exactly what Nvidia is doing with tensor cores.

    • bjourne 2 hours ago

      Except the native width of Tensor Cores are about 8-32 (depending on scalar type), whereas the width of TPUs is up to 256. The difference in scale is massive.

  • HarHarVeryFunny 2 hours ago

    It's not that the TPU is better than an NVidia GPU, it's just that it's cheaper since it doesn't have a fat NVidia markup applied, and is also better vertically integrated since it was designed/specified by Google for Google.

  • LogicFailsMe 3 hours ago

    That's pretty much what they've been doing incrementally with the data center line of GPUs versus GeForce since 2017. Currently, the data center GPUs now have up to 6 times the performance at matrix math of the GeForce chips and much more memory. Nvidia has managed to stay one tape out away from addressing any competitors so far.

    The real challenge is getting the TPU to do more general purpose computation. But that doesn't make for as good a story. And the point about Google arbitrarily raising the prices as soon as they think they have the upper hand is good old fashioned capitalism in action.

  • sojuz151 3 hours ago

    They lose the competitive advantage. They have nothing more to offer than what Google has in-house.

  • blibble 3 hours ago

    the entire organisation has been built over the last 25 years to produce GPUs

    turning a giant lumbering ship around is not easy

    • sbarre 3 hours ago

      For sure, I did not mean to imply they could do it quickly or easily, but I have to assume that internally at Nvidia there's already work happening to figure out "can we make chips that are better for AI and cheaper/easier to make than GPUs?"

  • sofixa 3 hours ago

    > what prevents Nvidia from doing the same thing and iterating on their more general-purpose GPU towards a more focused TPU-like chip as well, if that turns out to be what the market really wants.

    Nothing prevents them per se, but it would risk cannibalising their highly profitable (IIRC 50% margin) higher end cards.

  • numbers_guy 3 hours ago

    Nothing in principle. But Huang probably doesn't believe in hyper specializing their chips at this stage because it's unlikely that the compute demands of 2035 are something we can predict today. For a counterpoint, Jim Keller took Tenstorrent in the opposite direction. Their chips are also very efficient, but even more general purpose than NVIDIA chips.

    • mindv0rtex 6 minutes ago

      How is Tenstorrent h/w more general purpose than NVIDIA chips? TT hardware is only good for matmuls and some elementwise operations, and plain sucks for anything else. Their software is abysmal.

  • llm_nerd 3 hours ago

    For users buying H200s for AI workloads, the "ASIC" tensor cores deliver the overwhelming bulk of performance. So they already do this, and have been since Volta in 2017.

    To put it into perspective, the tensor cores deliver about 2,000 TFLOPs of FP8, and half that for FP16, and this is all tensor FMA/MAC (comprising the bulk of compute for AI workloads). The CUDA cores -- the rest of the GPU -- deliver more in the 70 TFLOP range.

    So if data centres are buying nvidia hardware for AI, they already are buying focused TPU chips that almost incidentally have some other hardware that can do some other stuff.

    I mean, GPUs still have a lot of non-tensor general uses in the sciences, finance, etc, and TPUs don't touch that, but yes a lot of nvidia GPUs are being sold as a focused TPU-like chip.

    • sorenjan 3 hours ago

      Is it the Cuda cores that run the vertex/fragment/etc shaders in normal GPUs? Where does the ray tracing units fit in? How much of a modern Nvidia GPU is general purpose vs specialized to graphics pipelines?

siliconc0w 3 hours ago

Google has always had great tech - their problem is the product or the perseverance, conviction, and taste needed to make things people want.

  • thomascgalvin 3 hours ago

    Their incentive structure doesn't lead to longevity. Nobody gets promoted for keeping a product alive, they get promoted for shipping something new. That's why we're on version 37 of whatever their chat client is called now.

    I think we can be reasonably sure that search, Gmail, and some flavor of AI will live on, but other than that, Google apps are basically end-of-life at launch.

    • siliconc0w 2 hours ago

      It's also paradoxically the talent in tech that isolates them. The internal tech stack is so incredibly specialized, most Google products have to either be built for internal users or external users.

      Agree there are lots of other contributing causes like culture, incentives, security, etc.

    • nostrademons 2 hours ago

      It's telling that basically all of Google's successful projects were either acquisitions or were sponsored directly by the founders (or sometimes, were acquisitions that were directly sponsored by the founders). Those are the only situations where you are immune from the performance review & promotion process.

  • villgax 2 hours ago

    Fuschia or me?

zenoprax 3 hours ago

I have read in the past that ASICs for LLMs are not as simple a solution compared to cryptocurrency. In order to design and build the ASIC you need to commit to a specific architecture: a hashing algorithm for a cryptocurrency is fixed but the LLMs are always changing.

Am I misunderstanding "TPU" in the context of the article?

  • olalonde 41 minutes ago

    "Application-specific" doesn't necessarily mean unprogrammable. Bitcoin miners aren't programmable because they don't need to be. TPUs are ASICs for ML and need to be programmable so they can run different models. In theory, you could make an ASIC hardcoded for a specific model, but given how fast models evolve, it probably wouldn't make much economic sense.

  • HarHarVeryFunny 2 hours ago

    Regardless of architecture (which is anyways basically the same for all LLMs), the computational needs of modern neural networks are pretty generic, centered around things like matrix multiply, which is what the TPU provides. There is even TPU support for some operations built into PyTorch - it is not just a proprietary interface that Google use themselves.

  • p-e-w 2 hours ago

    It’s true that architectures change, but they are built from common components. The most important of those is matrix multiplication, using a relatively small set of floating point data types. A device that accelerates those operations is, effectively, an ASIC for LLMs.

    • bfrog 2 hours ago

      We used to call these things DSPs

      • tuhgdetzhh 2 hours ago

        What is the difference between a DSP and Asic? Is a GPU a DSP?

        • bfrog an hour ago

          DSP is simply a compute architecture that focuses on mutliply and accumulate operations on particular numerical formats, often either fixed point q15/q31 type values or floats f16/f32.

          The basic operation that a NN needs accelerating is... go figure multiply and accumulate with the added activation function.

          See for example how the Intel NPU is structured here: https://intel.github.io/intel-npu-acceleration-library/npu.h...

        • imtringued 2 hours ago

          A DSP contains analog to digital and digital to analog converters plus DMA for fast transfers to main memory and fixed function blocks for finite impulse response and infinite pulse response filters.

          The fact that they also support vector operations or matrix multiplication is kind of irrelevant and not a defining characteristic of DSPs. If you want to go that far, then everything is a DSP, because all signals are analog.

          • bryanlarsen 35 minutes ago

            I've worked on DSP's with none of those things. Well, they did have DMA.

        • duped an hour ago

          ASICs bake one algorithm into the chip. DSPs are programmable, like GPUs or CPUs. The thing that historically set them apart were MAC/FMA and zero overhead loops. Then there are all the nice to haves, like built in tables of FFT twiddle factors, helpers for 1D convolution, vector instructions, fixed point arithmetic, etc.

          What makes a DSP different from a GPU is the algorithms typically do not scale nicely to large matrices and vectors. For example, recursive filters. They are also usually much cheaper and lower power, and the reason they lost popularity was because Arm MCUs got good enough and economy of scale kicked in.

          I've written code for DSPs both in college and professionally. It's much like writing code for CPUs or MCUs (it's all C or C++ at the end of the day). But it's very different from writing compute shaders or designing an ASIC.

giardini an hour ago

All this assumes that LLMs are the sole mechanism for AI and will remain so forever: no novel architectures (neither hardware nor software), no progress in AI theory, nothing better than LLMs, simply brute force LLM computation ad infinitum.

Perhaps the assumptions are true. The mere presence of LLMs seems to have lowered the IQ of the Internet drastically, sopping up financial investors and resources that might otherwise be put to better use.

  • olalonde 27 minutes ago

    That's incorrect. TPUs can support many ML workloads, they're not exclusive to LLMs.

thelastgallon 2 hours ago

With its AI offerings, can Google suck the oxygen out of AWS? AWS grew big because of compute. The AI spend will be far larger than compute. Can Google launch AI/Cloud offerings with free compute bundled? Use our AI, and we'll throw in compute for free.

ricardo81 3 hours ago

It's a cool subject and article and things I only have a general understanding of (considering the place of posting).

What I'm sure about is having a programming unit more purposed to a task is more optimal than a general programming unit designed to accommodate all programming tasks.

More and more of the economics of programming boils down to energy usage and invariably towards physical rules, the efficiency of the process has the benefit of less energy consumed.

As a Layman is makes general sense. Maybe a future where productivity is based closer on energy efficiency rather than monetary gain pushes the economy in better directions.

Cryptocurrency and LLMs seem like they'll play out that story over the next 10 years.

jimbohn 3 hours ago

Given the importance of scale for this particular product, any company placing itself on "just" one layer of the whole story is at a heavy disadvantage, I guess. I'd rather have a winning google than openai or meta anyway.

  • subroutine 2 hours ago

    > I'd rather have a winning google than openai or meta anyway.

    Why? To me, it seems better for the market, if the best models and the best hardware were not controlled by the same company.

    • jimbohn 2 hours ago

      I agree, it would be the best of bad cases, in a sense. I have low trust in OpenAI due to its leadership, and in Meta, because, well, Meta has history, let's say.

jmward01 2 hours ago

How much of current GPU and TPU design is based around attn's bandwith hungry design? The article makes it seem like TPUs aren't very flexible so big model architecture changes, like new architectures that don't use attn, may lead to useless chips. That being said, I think it is great that we have some major competing architectures out there. GPUs, TPUs and UMA CPUs are all attacking the ecosystem in different ways which is what we need right now. Diversity in all things is always the right answer.

thesz 2 hours ago

5 days ago: https://news.ycombinator.com/item?id=45926371

Sparse models have same quality of results but have less coefficients to process, in case described in the link above sixteen (16) times as less.

This means that these models need 8 times less data to store, can be 16 and more times faster and use 16+ times less energy.

TPUs are not all that good in the case of sparse matrices. They can be used to train dense versions, but inference efficiency with sparse matrices may be not all that great.

paulmist 3 hours ago

> The GPUs were designed for graphics [...] However, because they are designed to handle everything from video game textures to scientific simulations, they carry “architectural baggage.” [...] A TPU, on the other hand, strips away all that baggage. It has no hardware for rasterization or texture mapping.

With simulations becoming key to training models doesn't this seem like a huge problem for Google?

mosura 2 hours ago

This is the “Microsoft will dominate the Internet” stage.

The truth is the LLM boom has opened the first major crack in Google as the front page of the web (the biggest since Facebook), in the same way the web in the long run made Windows so irrelevant Microsoft seemingly don’t care about it at all.

  • villgax 2 hours ago

    Exactly, ChatGPT pretty much ate away ad volume & retention if th already garbage search results weren't enough. Don't even get me started on Android & Android TV as an ecosystem.

    • IncreasePosts 22 minutes ago

      That's not the story that GOOGs quarterly earning reports tell(ad revenue up 12% YoY)

clickety_clack 3 hours ago

Any chance of a bit of support for jax-metal, or incorporating apple silicon support into Jax?

lvl155 3 hours ago

Right because people would love to get locked into another even more expensive platform.

  • svantana 3 hours ago

    That's mentioned in the article, but is the lock-in really that big? In some cases, it's as easy as changing the backend of your high-level ML library.

    • tempest_ an hour ago

      That is like how every ORM promises you can just swap out the storage layer.

      In practice it doesnt quite work out that way.

    • LogicFailsMe 3 hours ago

      That's what it is on paper. But in practice you trade one set of hardware idiosyncrasies for another and unless you have the right people to deal with that, it's a hassle.

      • lvl155 2 hours ago

        On top, when you get locked into Google Cloud, you’re effectively at the mercy of their engineers to optimize and troubleshoot. Do you think Google will help their potential competitors before they help themselves? Highly unlikely considering their actions in the past decade plus.

    • Irishsteve 3 hours ago

      I thin k you can only run on google cloud not aws bare metal azure etc

villgax 3 hours ago
  • mupuff1234 2 hours ago

    That's actually one of the reasons why Google might win.

    Nvidia is tied down to support previous and existing customers while Google can still easily shift things around without needing to worry too much about external dependencies.

  • riku_iki 3 hours ago

    It's all small products which didn't receive traction.

    • davidmurdoch 3 hours ago

      It's not though. Chromecast, g suite legacy, podcast, music, url shortener,... These weren't small products.

      • IncreasePosts 20 minutes ago

        Chromecast is "gone" because it bridged the gap of dumb tvs needing streaming capabilities. Now almost every tv sold has some kind of smart feature or can stream natively so Chromecast aren't needed.

      • riku_iki 2 hours ago

        chromecast is alive, podcast, music were migrated to youtube app, url shortener is not core business and just side hustle for google. Not familiar with g suite legacy.

    • bgwalter 3 hours ago

      Google Hangouts wasn't small. Google+ was big and supposedly "the future" and is the canonical example of a huge misallocation of resources.

      Google will have no problem discontinuing Google "AI" if they finally notice that people want a computer to shut up rather than talk at them.

      • riku_iki 2 hours ago

        > Google+ was big

        how you define big? My understanding they failed to compete with facebook, and decided to redirect resources somewhere else.

        • Workaccount2 2 hours ago

          Google completely fumbled Google+ by doing a slow invite only launch.

          The hype when it was first coming to market was intense. But then nobody could get access because they heavily restricted sign ups.

          By the time it was in "open beta" (IIRC like 6-7 mos later), the hype had long died and nobody cared about it anymore.

          • kaz-inc an hour ago

            In my recollection, what killed g+ was forcing your YouTube account to become your g+ account, with your public name attached to the trashpit YouTube comments used to be. Everybody protested using g+, but the "Google account for everything" stuck around anyways.

        • lokar an hour ago

          They put a lot of effort into it, but it never had much usage.

    • villgax 2 hours ago

      Wait until Apple's ChromeBook competitor shows up to eat their lunch just like switching to another proprietary stack with no dev ecosystem will die out. Sure they'll go after big ticket accounts, also take a guess at what else gets sanctioned next.

      • IncreasePosts 16 minutes ago

        Isn't an iPad with a keyboard essentially a Chromebook competitor?

        The only lunch that will be eaten is Apple's own, since it would probably cannibalize their own sales of the MacBook air

qwertox 3 hours ago

How high are the chances that as soon as China produces their own competitive TPU/GPU, they'll invade Taiwan in order to starve the West in regards to processing power, while at the same time getting an exclusive grip on the Taiwanese Fabs?

  • bryanlarsen 2 hours ago

    China will invade Taiwan when they start losing, not when they're increasingly winning.

    As long as "tomorrow" is a better day to invade Taiwan than today is, China will wait for tomorrow.

    • Xss3 2 hours ago

      Their demographics beg to differ.

      • bryanlarsen 28 minutes ago

        If demographics were a big deal, it'd be part of the same "better to invade today or tomorrow" calculation.

        Zeihan's predictions on China have been fabulously wrong for 20+ years now.

  • A4ET8a8uTh0_v2 3 hours ago

    Seems low at the moment with the concept of G2 being floated as generic understanding of China's ascension to where Russia used to be effectively recreating bipolar semi cold war world order. Mind, I am not saying impossible, but there are reasons China would want to avoid this scenario ( probably one of the few things US would not tolerate and would likely retaliate ).

  • CuriouslyC 2 hours ago

    The US would destroy TSMC before letting China have it. China also views military conquest of Taiwan as less than ideal for a number of reasons, so I think right now it's seen as a potential defensive move in the face of American aggression.

  • hjouneau 3 hours ago

    If they have the fabs but ASML doesn't send them their new machines, they will just end up in the same situation as now, just one generation later. If China wants to compete, they need to learn how to make the EUV light and mirrors.

  • Xss3 2 hours ago

    The fabs would be destroyed in such a situation. The wesr would absolutely play that card in negotiations.

  • gostsamo 3 hours ago

    Not very. Those fabs are vulnerable things, shame if something happens to them. If China attacks, it would be for various other reasons and processors are only one of many considerations, no matter how improbable it might sound to an HN-er.

    • qwertox 2 hours ago

      What if China becomes self-sufficient enough to no longer rely on Taiwanese Fabs, and hence having no issues with those Fabs getting destroyed. That would put China as the leader once and for all.

      • gostsamo 2 hours ago

        First, the US has advanced fab capabilities and in case of a need can develop them further. On the other side, China will suffer a Russia style blockback while caught up in a nasty war with Taiwan.

        Totally possible, but the second order effects are much more complex than "leader once for all". The path for victory for China is not war despite the west, but a war when the west would not care.

        • the_af 2 hours ago

          The best path for victory for China is probably no war at all. War is wasteful and risky.

  • GordonS 3 hours ago

    Highly unlikely. Despite the rampant anti-Chinese FUD that's so prevalent in the media (and, sadly, here on HN), China isn't really in the habit of invading other lands.

    • CuriouslyC 2 hours ago

      The plot twist here is that China doesn't view Taiwan as foreign.

      • the_af 2 hours ago

        But China also doesn't see war as the best path forward in Taiwan (they want to return it to the mainland, not lay waste to it). The grandparent comment is unfairly downvoted in my opinion, the fact remains modern China is far less likely to be involved in military campaigns than, say, the US.

bhouston 3 hours ago

In my 20+ years of following NVIDIA, I have learned to never bet against them long-term. I actually do not know exactly why they continually win, but they do. The main issue they have a 3-4 year gap between wanting a new design pivot and realizing it (silicon has a long "pipeline"), it can seem that they may be missing a new trend or swerve in the demands of the market, it is often simply because there is this delay.

  • bryanlarsen 3 hours ago

    You could have said the same thing about Intel for ~50 years.

  • newyankee 3 hours ago

    Fair, but the 75% margins can be reduced to 25% with healthy competition. The lack of competition in the frontier chips space was always the bottleneck to commoditization of computation, if such a thing is even possible