Case studies

Execution intelligence, in real sessions.

Problem → Prediction → Outcome — from measured LOCI sessions, not testimonials.

Embedded · TI CC2674P10 (Cortex-M33)

Nanosecond timing, no hardware

77× hot-path fix

Problem

An IMU tilt feature on a BLE device. Timing and power normally need real silicon — a JTAG probe, a power analyzer, the board on the desk.

Prediction

LOCI predicted per-function timing to nanosecond precision from the firmware binary, and flagged a libm sqrtf software loop on the hot path.

Outcome

A 77× fix on the hot path. ~4–8 hours of bench work replaced by seconds. The board never left the drawer.

Cloud · OpenSSL token service

A p99 regression caught at PR

18× p99, prevented

Problem

A change encrypted session tokens with AES-256-GCM by creating a new EVP cipher context on every request.

Prediction

LOCI predicted p99 latency 18× over budget — per-request alloc/free on the hot path, throughput regressing — before a single test ran.

Outcome

The agent pooled the context and reused it per call. The throughput regression never reached production.

AI · CUDA paged-attention

A GPU spill, predicted from the binary

1.32× faster, within budget

Problem

An agent raised GEMM register tiling on SM_90 to reuse more data — a change that looks faster in source.

Prediction

LOCI predicted register pressure over budget (132 > 128 regs) — ptxas would spill — read from PTX / SASS, before launch.

Outcome

Re-tiled to single-buffered K. Within budget, 1.32× faster — no spill, no slow inference.

Robotics · real-time motor control

A control-loop deadline, caught before deploy

1 kHz loop, deadline held

Problem

An agent added a smoothing filter to a robot arm's motor-control loop to reduce servo jitter — a change that looks harmless in source.

Prediction

LOCI predicted the loop's worst-case execution would exceed the 1 ms control period on the target MCU — the deadline miss and jitter that would destabilize the servo — read from the binary, before it ran on hardware.

Outcome

The agent moved the filter off the hot path and precomputed its coefficients. The 1 kHz loop stayed within deadline — stability preserved before the robot ever moved.

Automotive · autonomous navigation

Route to the point, ready to go

planner on the control cycle

Problem

An agent wrote the route planner that turns a destination into waypoints for the navigation stack — refreshing the map as the vehicle drives.

Prediction

LOCI predicted the planner's worst-case would overrun the ECU's update cycle — waypoints reaching the map late and stale — read from the binary, before a test drive.

Outcome

The agent bounded the search and cached the map tiles. The route now computes inside the control cycle — the right data reaches the map on time, ready to drive.

Real measured LOCI sessions · predictions verifiable on real silicon.