<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:media="http://search.yahoo.com/mrss/" xmlns:content="http://purl.org/rss/1.0/modules/content/"><channel><title>Our Times — Technology</title><description>Hard reporting on the systems behind modern software: AI models and the infrastructure that trains them, chip supply, developer tooling, platform power, and the security failures that keep repeating.</description><link>https://ourtimes.in</link><language>en-US</language><copyright>© 2026 Our Times Media</copyright><lastBuildDate>Sun, 16 Aug 2026 07:01:18 GMT</lastBuildDate><ttl>60</ttl><image><url>https://ourtimes.in/logo.png</url><title>Our Times</title><link>https://ourtimes.in/</link></image><atom:link href="https://ourtimes.in/category/technology/rss.xml" rel="self" type="application/rss+xml"/><item><title>Inference Is Now the Line Item That Decides Which AI Products Survive</title><link>https://ourtimes.in/inference-costs</link><guid isPermaLink="true">https://ourtimes.in/inference-costs</guid><description>Training budgets get the headlines, but serving costs are quietly killing products. Six teams shared their per-request economics, and the pattern is consistent.</description><pubDate>Wed, 12 Aug 2026 00:00:00 GMT</pubDate><dc:creator>Maya Iyer</dc:creator><atom:updated>2026-08-13T00:00:00.000Z</atom:updated><media:content url="https://ourtimes.in/_astro/inference-costs.CXJEjbLP.jpg" medium="image" type="image/jpeg" width="1600" height="900"><media:description type="plain">Ascending bar chart rendered in violet and cyan gradients, representing rising per-request serving costs</media:description><media:credit role="author">Our Times illustration</media:credit></media:content><media:thumbnail url="https://ourtimes.in/_astro/inference-costs.CXJEjbLP.jpg" width="1600" height="900"/><content:encoded>&lt;p&gt;For three years the number that mattered in machine learning was the size of the training run. It was legible, it was expensive, and it made for a clean narrative about scale. That number now tells you almost nothing about whether a product works as a business. The number that does is the cost of answering a single request, and six engineering teams who shared their figures with Our Times describe the same uncomfortable arithmetic.&lt;/p&gt;
&lt;p&gt;Training is a capital expense you amortise. Inference is a variable cost you pay on every interaction, forever, and it scales with exactly the thing you are trying to grow.&lt;/p&gt;
&lt;h2 id=&quot;the-gap-between-demo-economics-and-production-economics&quot;&gt;The gap between demo economics and production economics&lt;/h2&gt;
&lt;p&gt;A retrieval-heavy assistant that costs a fraction of a cent per query in a demo will often cost twenty to forty times that in production. The teams we spoke to attributed the gap to four things, and they listed them in roughly the same order.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Context growth.&lt;/strong&gt; Demos use short prompts. Real users paste documents. Attention cost grows faster than linearly in sequence length, so the tail of long requests dominates the average.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Retries and cascades.&lt;/strong&gt; A single user action fans out into several model calls once you add reranking, tool use, and a validation pass.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Idle capacity.&lt;/strong&gt; Reserved accelerators are billed whether or not they are saturated. One team reported 31% average utilisation against a peak they had provisioned for.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Guardrails.&lt;/strong&gt; Safety classification, moderation, and output checking are additional forward passes that nobody puts in the pitch deck.&lt;/li&gt;
&lt;/ul&gt;
&lt;blockquote&gt;
&lt;p&gt;We shipped a feature with a gross margin that was negative for eight months and nobody noticed, because the cost sat in a shared infrastructure budget rather than against the product line.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;That quote came from a platform engineering lead at a company with more than 400 employees, on condition that we not name the product. It was the most common structural failure described to us: serving cost is real, but it is not attributed, so it cannot be managed.&lt;/p&gt;
&lt;h2 id=&quot;what-the-teams-that-fixed-it-actually-did&quot;&gt;What the teams that fixed it actually did&lt;/h2&gt;
&lt;p&gt;None of the successful interventions involved a better model. They involved routing, caching, and a willingness to say no to requests.&lt;/p&gt;
&lt;p&gt;The most effective single change, reported by four of six teams, was tiered routing: classify the request, send the easy majority to a small model, and reserve the expensive path for cases that need it. The teams that measured it found that between 60% and 80% of production traffic did not need their flagship model at all. Users did not notice the difference, because the requests being downgraded were the ones with unambiguous answers.&lt;/p&gt;
&lt;p&gt;Caching came second, and the surprise was how much of it was viable. Semantic caching on normalised queries produced hit rates of 18% to 35% in support and documentation workloads. That is a direct multiplier on cost, and it also cuts latency, which improves the metric the product team actually cares about.&lt;/p&gt;
&lt;p&gt;The third lever was the least popular and the most effective: limiting context. Two teams capped retrieved context aggressively and measured no degradation in answer quality, because most of the retrieved material had been noise. One of them had been paying to process an average of 14,000 tokens of context to answer questions that needed 1,200.&lt;/p&gt;
&lt;h2 id=&quot;why-the-accounting-matters-more-than-the-optimisation&quot;&gt;Why the accounting matters more than the optimisation&lt;/h2&gt;
&lt;p&gt;The teams that had cost under control shared one non-technical trait. They had a per-request cost figure that a product manager could see, in the same dashboard as engagement and retention.&lt;/p&gt;
&lt;p&gt;Where serving cost lived in a central infrastructure line, it behaved like weather: everyone complained, nobody owned it. Where it was attributed per feature, the optimisation happened without anyone mandating it, because the person who had to justify the feature also had to justify its margin.&lt;/p&gt;
&lt;p&gt;This is not a new lesson. It is the same lesson cloud migration taught a decade ago, arriving again with a different bill attached. The difference is magnitude. A wasteful web service costs you a percentage. A wasteful inference path costs you the product.&lt;/p&gt;
&lt;h2 id=&quot;the-part-that-does-not-optimise-away&quot;&gt;The part that does not optimise away&lt;/h2&gt;
&lt;p&gt;There is a floor, and several teams have hit it. If the task genuinely requires a large model over long context with verification, the cost is the cost, and the only remaining moves are pricing and scope. Two of the six teams had raised prices. One had removed a feature entirely after concluding that no plausible efficiency gain would make it viable at the price point customers would accept.&lt;/p&gt;
&lt;p&gt;That is a healthy outcome, and it is happening more often. The supply picture matters here too: as we reported in our analysis of &lt;a href=&quot;https://ourtimes.in/chip-supply&quot;&gt;the advanced packaging bottleneck&lt;/a&gt;, accelerator availability is not improving on the timeline most 2025 capacity plans assumed. Teams that budgeted for cost declines driven by hardware abundance are revising those assumptions.&lt;/p&gt;
&lt;p&gt;The teams likeliest to survive the next two years are not the ones with the best benchmark scores. They are the ones who can tell you, to the cent, what a request costs and what it earns. For more on how open-weight alternatives change that calculation, see our reporting on &lt;a href=&quot;https://ourtimes.in/open-weights&quot;&gt;where open models still lose on deployment&lt;/a&gt;.&lt;/p&gt;
</content:encoded><category>Technology</category><category>AI infrastructure</category><category>Unit economics</category><category>Cloud</category><category>GPUs</category><author>maya.iyer@ourtimes.in (Maya Iyer)</author></item><item><title>Open-Weight Models Closed the Benchmark Gap. Deployment Is Where They Lose.</title><link>https://ourtimes.in/open-weights</link><guid isPermaLink="true">https://ourtimes.in/open-weights</guid><description>On published evaluations the difference has narrowed to noise. Teams running both in production describe a gap that benchmarks do not measure at all.</description><pubDate>Mon, 10 Aug 2026 00:00:00 GMT</pubDate><dc:creator>Maya Iyer</dc:creator><media:content url="https://ourtimes.in/_astro/open-weights.C1_xsAQS.jpg" medium="image" type="image/jpeg" width="1600" height="900"><media:description type="plain">Network graph of violet and cyan nodes connected by faint lines, representing distributed open model deployment</media:description><media:credit role="author">Our Times illustration</media:credit></media:content><media:thumbnail url="https://ourtimes.in/_astro/open-weights.C1_xsAQS.jpg" width="1600" height="900"/><content:encoded>&lt;p&gt;On the public leaderboards the argument is over. The best open-weight models now sit within a few points of the best proprietary ones on most published evaluations, and on several tasks they are ahead. Teams that have actually deployed both describe a gap that remains substantial, and it has almost nothing to do with capability.&lt;/p&gt;
&lt;p&gt;The difference shows up in the parts of a system that no benchmark scores: throughput under concurrency, behaviour at the edges of the input distribution, and the operational cost of being the party responsible when it breaks.&lt;/p&gt;
&lt;h2 id=&quot;what-benchmarks-measure-and-what-they-miss&quot;&gt;What benchmarks measure and what they miss&lt;/h2&gt;
&lt;p&gt;A published evaluation measures single-request quality on a curated input distribution, usually with generous latency budgets and no cost ceiling. Production measures something else.&lt;/p&gt;
&lt;p&gt;Four teams running both classes of model in production identified the same divergences.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Throughput at target latency.&lt;/strong&gt; A model that matches on quality can require substantially more accelerator time to hit the same p95 latency under real concurrency. That is a cost difference, not a quality difference, and it does not appear on a leaderboard.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Tail behaviour.&lt;/strong&gt; Malformed input, adversarial prompts, mixed languages, and very long context are underrepresented in evaluation sets and overrepresented in real traffic.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Structured output reliability.&lt;/strong&gt; Teams consistently reported more schema violations from open-weight models when asked for strict JSON, which matters enormously when the output feeds a downstream system rather than a human.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Change management.&lt;/strong&gt; A hosted endpoint changes underneath you, which is a real risk. A self-hosted model does not change unless you change it, which sounds better until you own the upgrade, the regression testing, and the rollback.&lt;/li&gt;
&lt;/ul&gt;
&lt;blockquote&gt;
&lt;p&gt;We did not switch back because the open model was worse. We switched back because we were spending two engineers on serving infrastructure and the vendor bill was cheaper than those two engineers.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h2 id=&quot;the-cases-where-open-weights-clearly-win&quot;&gt;The cases where open weights clearly win&lt;/h2&gt;
&lt;p&gt;The picture is not one-sided, and the teams that stayed on open weights had specific, legible reasons.&lt;/p&gt;
&lt;p&gt;Data residency was the most common. If the requirement is that inputs never leave a jurisdiction or a private network, the decision is made before quality enters the conversation.&lt;/p&gt;
&lt;p&gt;The second was high-volume narrow tasks. Classification, extraction, and routing at large scale is exactly where a smaller fine-tuned open model is not just adequate but preferable, because the per-request cost difference compounds and the task distribution is narrow enough that tail behaviour is controllable. This is the same insight driving the tiered-routing pattern we documented in our reporting on &lt;a href=&quot;https://ourtimes.in/inference-costs&quot;&gt;serving-cost economics&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;The third was pricing leverage. Two teams described maintaining a functional open-weight deployment specifically as a negotiating position, and both reported it worked.&lt;/p&gt;
&lt;h2 id=&quot;what-the-honest-comparison-requires&quot;&gt;What the honest comparison requires&lt;/h2&gt;
&lt;p&gt;The comparison most teams run is not the comparison they should run. Quality on a held-out set is the easy part. The complete accounting includes accelerator hours at target latency, engineering time for serving and upgrades, the cost of the evaluation harness you now have to maintain yourself, and the residual risk you have absorbed by becoming the responsible party.&lt;/p&gt;
&lt;p&gt;Run that comparison and the answer stops being ideological. It becomes a straightforward function of volume, task breadth, and how much engineering capacity you have to spend. High volume and narrow tasks favour open weights. Low volume and broad tasks favour a hosted endpoint. Most organisations have both, which is why most end up running both.&lt;/p&gt;
&lt;p&gt;The framing that will age worst is the one that treats this as a single decision with a single answer. Hardware supply shapes it too: as we reported on &lt;a href=&quot;https://ourtimes.in/chip-supply&quot;&gt;the packaging bottleneck&lt;/a&gt;, the cost of self-hosting depends on an accelerator market that is not loosening as quickly as 2025 plans assumed.&lt;/p&gt;
</content:encoded><category>Technology</category><category>Open source</category><category>Model evaluation</category><category>AI infrastructure</category><category>Procurement</category><author>maya.iyer@ourtimes.in (Maya Iyer)</author></item><item><title>Advanced Packaging, Not Lithography, Is the Real Chip Bottleneck</title><link>https://ourtimes.in/chip-supply</link><guid isPermaLink="true">https://ourtimes.in/chip-supply</guid><description>Everyone watches EUV tool shipments. The constraint on accelerator supply has moved downstream to packaging capacity, and it does not scale on the same timeline.</description><pubDate>Thu, 06 Aug 2026 00:00:00 GMT</pubDate><dc:creator>Maya Iyer</dc:creator><media:content url="https://ourtimes.in/_astro/chip-supply.2KU41cfp.jpg" medium="image" type="image/jpeg" width="1600" height="900"><media:description type="plain">Receding perspective grid in violet with scattered glowing nodes, suggesting a manufacturing pipeline</media:description><media:credit role="author">Our Times illustration</media:credit></media:content><media:thumbnail url="https://ourtimes.in/_astro/chip-supply.2KU41cfp.jpg" width="1600" height="900"/><content:encoded>&lt;p&gt;Ask a policy analyst where accelerator supply is constrained and you will usually hear about lithography. Ask someone who schedules a fab and you will hear about packaging. The second answer has been the correct one for roughly two years, and the distinction matters because the two constraints relax on very different timelines.&lt;/p&gt;
&lt;p&gt;Front-end wafer capacity for leading-edge logic has expanded substantially. The step that has not kept pace is the back end: the process of stacking high-bandwidth memory beside a logic die on an interposer and getting acceptable yield out of the result.&lt;/p&gt;
&lt;h2 id=&quot;why-the-back-end-became-the-constraint&quot;&gt;Why the back end became the constraint&lt;/h2&gt;
&lt;p&gt;A modern accelerator is not one chip. It is a logic die, several stacks of high-bandwidth memory, and a substrate that connects them at a pitch fine enough that the memory bandwidth is usable. That assembly step involves thermal cycling, precise alignment, and a yield penalty applied to components that are already expensive.&lt;/p&gt;
&lt;p&gt;Three properties make it hard to scale quickly.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;The equipment is specialised and the vendor list is short.&lt;/strong&gt; Bonders and inspection tools for fine-pitch interposers come from a handful of suppliers with their own multi-quarter lead times.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Yield loss compounds.&lt;/strong&gt; Scrapping an assembly late in the process discards good logic and good memory together, so effective capacity is lower than nameplate capacity by a margin that varies with process maturity.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Memory supply is coupled.&lt;/strong&gt; High-bandwidth memory qualification is slow, and the number of stacks per accelerator has been rising, so each unit consumes more of a separately constrained input.&lt;/li&gt;
&lt;/ul&gt;
&lt;blockquote&gt;
&lt;p&gt;Adding a lithography tool is a capital decision. Adding qualified packaging capacity is a capital decision plus eighteen months of process learning that you cannot buy.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h2 id=&quot;what-the-numbers-look-like-from-the-outside&quot;&gt;What the numbers look like from the outside&lt;/h2&gt;
&lt;p&gt;Public disclosure here is thin, which is part of the problem. Foundries report capacity in wafer-equivalent terms that obscure the back end, and packaging subcontractors report revenue rather than qualified units.&lt;/p&gt;
&lt;p&gt;The signals that are visible point in one direction. Lead times quoted to large buyers have stayed extended even through periods when wafer starts increased. Substrate suppliers have been running expansion programmes continuously since 2024 without lead times normalising. And the pricing structure has shifted: buyers now commonly contract for packaged units rather than wafers, which is what happens when the scarce step moves downstream.&lt;/p&gt;
&lt;h2 id=&quot;the-forecasting-error-this-creates&quot;&gt;The forecasting error this creates&lt;/h2&gt;
&lt;p&gt;Capacity plans written in 2025 generally assumed that accelerator availability would improve as wafer capacity came online, and that per-unit costs would fall accordingly. Teams built serving-cost forecasts on that assumption. As we found reporting on &lt;a href=&quot;https://ourtimes.in/inference-costs&quot;&gt;the serving-cost squeeze&lt;/a&gt;, several of those forecasts are now being revised upward, because the hardware abundance they priced in has not arrived.&lt;/p&gt;
&lt;p&gt;The correction is not dramatic. It is a matter of quarters, not years. But it lands on organisations that committed to product margins based on the earlier curve, and the ones with the least slack are the ones who reserved capacity at fixed prices without a corresponding pricing mechanism on the revenue side.&lt;/p&gt;
&lt;h2 id=&quot;what-would-actually-change-the-picture&quot;&gt;What would actually change the picture&lt;/h2&gt;
&lt;p&gt;Three developments would loosen the constraint, in descending order of near-term plausibility.&lt;/p&gt;
&lt;p&gt;The first is process maturity at existing packaging lines, which raises effective capacity without new equipment. This is happening steadily and is the main reason supply has improved at all.&lt;/p&gt;
&lt;p&gt;The second is architectural: designs that need fewer memory stacks per unit of useful throughput. There is real work here, and it does more for effective supply than a new facility would, because it reduces demand on the coupled input.&lt;/p&gt;
&lt;p&gt;The third is new qualified capacity at scale, which is under construction and will matter in 2027 and beyond. Anyone promising relief sooner than that from new facilities is describing an announcement, not a shipment.&lt;/p&gt;
&lt;p&gt;For the demand side of this equation, see our reporting on &lt;a href=&quot;https://ourtimes.in/open-weights&quot;&gt;where open-weight models still lose&lt;/a&gt;, which shapes how much of the market needs frontier-class hardware at all.&lt;/p&gt;
</content:encoded><category>Technology</category><category>Semiconductors</category><category>Supply chain</category><category>Manufacturing</category><category>GPUs</category><author>maya.iyer@ourtimes.in (Maya Iyer)</author></item></channel></rss>