induwara.lk
Opinionedge-aicomputer-visionembedded-systems

Ukraine's autonomous drones run AI on an $18 chip

Edge AI on cheap hardware just got its loudest proof point: vision-based autonomous tracking running on an $18 Arm SoC, no GPS, no cloud, no link. Four lessons for small teams.

Induwara Ashinsana5 min read
FPV drones equipped with Auterion swarm autonomy diving toward a self-propelled artillery gun
Image: Ars Technica

Edge AI on cheap hardware just got its loudest proof point, and it came out of a war. Ars Technica reported that Ukraine's cheap kamikaze drones are getting AI that tracks targets on their own. It is a $100 million deal putting US-developed autonomy into 50,000 Ukrainian drones.

I'm not going to pretend this is a happy story. It's a weapons story. But the engineering underneath it demolishes an assumption I hear constantly from builders here: that useful AI needs a GPU, a cloud account, and a credit card that works internationally.


💰 The whole autonomy stack fits in $18 of silicon

Here is the number that made me stop reading and go back: the flight control and terminal guidance system from Auterion is optimised to run on a Western-made Arm system-on-a-chip costing $18. Not $18,000. Not a Jetson. Eighteen dollars.

The cost ladder in the article is worth laying out properly, because the spread is the entire argument:

Item Cost (as reported)
Arm SoC running the AI $18
Manually piloted SkyFall Shrike FPV drone ~$400
Shrike + Auterion Skynode S strike kit ~$2,000
Perennial Autonomy "Hornet" long-range AI drone ~$5,000
Western precision munition (Auterion CEO's comparison) six or seven figures per shot, 30–60× the price

Key takeaway: the AI that does the hard part, visually tracking a moving object and steering into it, costs less than a month of a hosted LLM API subscription. The expensive parts of that list are all mechanical, not computational.

CEO Lorenz Meier described the change as "replacing the existing flight controller — which has no computer, no AI — with avionics that has a microprocessor unit, has AI on board." That's it. A microcontroller became a computer, and the capability jumped a category.


📡 No GPS, no link, no cloud: built for the network you actually have

The technical constraint I find most instructive: the tracking relies solely on visual information from the drone's main onboard camera. No GPS. The operator designates a target up to half a mile away, flips into what Meier calls "fire-and-forget terminal guidance mode," and the drone finishes the job even if the radio link dies from terrain, buildings, or deliberate jamming.

Read that as a systems requirement list and it looks familiar:

  • The network will drop, and the product must not.
  • The positioning service will be wrong or absent.
  • The inference must happen on the device, because the round trip is not available.
  • Degraded mode is the normal mode, not the exception.

If you've built anything for users outside Colombo — an app for estate workers, a field data collector, anything that has to work in a lorry on the A9 — you have written that list before. The answer they landed on is the answer we usually skip: put the model on the device and stop asking the network for permission.

Most "AI features" I review here fall over the moment mobile data flickers, because someone put a cloud API call on the critical path of a UI interaction. That's a design choice, not a constraint.

Before you assume you need your own hardware or a rented GPU, price the hosted option honestly against the on-device one. Our AI model comparison tool puts the cost and context numbers side by side. Sometimes the API wins. But "we'll just call the API" should be a decision, not a reflex.


🔁 The feedback loop is the product, not the model

Meier has visited Ukraine eight times, and his read on why Ukrainian firms ship fast has nothing to do with talent or funding:

"The Ukrainian forces are relatively accepting of initial battlefield failure. A lot of the Ukrainian firms didn't show up with a perfectly working product — they showed up with something that was better than nothing, and then iterated through a lot of failures towards a point where it works every single time."

The structural piece is that Ukraine built a way to measure hit rates and military value, and that measurement feeds straight back into the next revision. Contrast with the US Pentagon's Drone Dominance selection gates, where a company that misses a cut can't simply return three weeks later with a better product.

Three things a two-person team in Sri Lanka can copy directly:

  1. Ship the version that is better than nothing. Not the version you'd demo at a conference.
  2. Instrument the thing you actually care about. Hit rate, not page views. Task completion, not signups.
  3. Keep the revision cycle shorter than your competitor's approval cycle. That is the whole moat.

The Auterion contract history shows the same compounding: 33,000 strike kits committed in July 2025 on a $50 million Pentagon contract, then 50,000 units on a $100 million contract reportedly funded by Germany, fulfilled by their Munich team. Each round was earned by the previous round working.


🧩 "You can't have 15 operating systems"

The last part is a platform argument, and it applies to anyone building an integration-heavy product. Meier wants a common operating system so command systems can work with drones from many manufacturers, and he's blunt about the ceiling:

"You need the autonomy to fold into your command system, which means you need the same operating system, and maybe you can afford to integrate two or three — like there are apps for iOS and Android and I think that's OK. But you can't have 15."

Same maths applies to your product. Every additional platform you support multiplies test surface, support load, and the number of ways a release can break. Two targets done properly beat six done partially, every time.

Worth naming the uncomfortable part too: the swarm capability is already demonstrated. Auterion showed one pilot commanding three autonomous strike drones against three separate targets at Camp Blanding in Florida, with the Nemyx system reprioritising so two drones don't waste themselves on the same target. Meier says he personally believes a human should make the life-or-death decision, while conceding adversaries may not leave that choice open. He also says operators can be trained in 60 seconds. Those two facts sit badly together, and I don't think he's hiding that.


💡 What this means for you

If you're a student or a small-team builder here, take four things from it:

  • Compute is not your bottleneck. An $18 Arm chip runs real-time visual tracking. Your idea does not need an H100; it needs a smaller model and a clearer problem.
  • Design for the disconnected case first. The system that survives jamming is the same system that survives a dead 4G cell.
  • Vision beats metadata when metadata can lie. They dropped GPS because GPS is spoofable. Ask what your equivalent of GPS is.
  • Iteration speed is the competitive advantage that capital cannot buy quickly.

Cheap, autonomous, and iterated fast has just beaten expensive, exquisite, and slow in the most unforgiving test environment there is. That result is going to leak into civilian engineering, and the teams with small budgets are the ones best positioned to use it.

#edge-ai#computer-vision#embedded-systems
IA

Induwara Ashinsana

Information Systems student at UCSC and Executive Director at Ryzera Technologies. Writes about software, AI, and what it means for builders in Sri Lanka.

About the author →

Keep reading