Skip to content
View AshrithaG's full-sized avatar

Highlights

  • Pro

Block or report AshrithaG

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Content in all repositories owned by your account will be closed.
Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
AshrithaG/README.md

Ashritha Gonuguntla

Carnegie Mellon University. I work on whether AI systems actually do what we claim they do: evaluation that holds up, and the systems engineering underneath it.

Most of my recent work follows one thread: the standard way to measure something is often subtly invalid, and measuring it properly changes the answer.

Publications

The Plan, Not the Decoder · MUCG Workshop @ ECCV 2026 (oral) Reasoning-augmented text-to-image models emit a machine-readable plan before decoding. I show compositional failures originate in the plan rather than the decoder, and repair them at inference time by editing the plan alone. code

The Replay Gap · Efficient Reasoning Workshop @ COLM 2026 Every LLM-routing benchmark scores routers by replaying logged trajectories. In a multi-step agent that is unsound. ~900 branching rollouts show early model swaps diverge at the first post-fork action 74–77% of the time, leaving ~3% of replayed states valid. code · data · page

Selected work

nanoinfer Inference engine from scratch in C++: own conv kernels, liveness-based memory planner, int8 quantization. Within 1% of ONNX Runtime on dense models, and honest about the 1.3–1.7× gap on depthwise ones. Its int8 GEMM reaches 122.8 TOPS in hand-written CUDA and 540 TOPS in Triton, matching cuBLAS once cuBLAS is called in its fast layout.
int8-linear W8A8 int8 linear layers in Triton, served in vLLM on an RTX 4090: decode at 1.06x to 1.19x vLLM's default CUTLASS kernel, prefill at 1.29x, no measurable perplexity cost, and still 0.85x to 0.90x without CUDA graphs. It traces a CUTLASS slowdown past batch 16 to its dispatch buckets (vLLM #56924), and tunes in a 28-layer stand-in after per-layer tuning made the served model slower.
batch-invariance What determinism costs in vLLM. The batch-invariant mode holds with CUDA graphs on (0 of 30 prompts change, against 13 of 30 by default) and costs 54 to 67% of throughput, because its kernels are slower.
specdec Speculative decoding from scratch. It loses at every window size, and the reason is one number: a 0.6B draft pass costs 0.649 of a 4B target pass, which is also the break-even acceptance rate.
query-rewrite-eval Does ROUGE measure query rewriting? Across systems that genuinely differ, it ranks them close to backwards from retrieval quality (Kendall tau -0.73 to -0.87). Includes a hand-written sharded BM25 index.
mlops-replay An MLOps platform evaluated rather than merely built: nine years of NYC taxi data replayed monthly, with a measured detection rate and false-alarm rate for its own monitoring.
gated-residual-rl A learned gate decides when to override a frozen base policy on contact-rich peg insertion. 85% success vs 45% base, intervening in 66% of timesteps.
gridpilot An LLM agent operating a simulated power grid during cascading failure: IEEE 118-bus physics, verified tools, simulate-before-apply guardrail, 50-incident benchmark.
federated-fault-diagnosis FedAvg vs FedProx on CWRU bearing data under non-IID clients, partial participation, and stragglers.

📫 agonugun@andrew.cmu.edu

Popular repositories Loading

  1. eparts eparts Public

    Multi-agent system running a capstone team's engineering operations: 31 agents, 7 MCP integrations, and an orchestration contract verified by 20 scenarios with zero model calls.

    Python 2

  2. compositional-t2i-diagnostics compositional-t2i-diagnostics Public

    Diagnosing and repairing compositional failure in reasoning-augmented text-to-image generation. MUCG workshop at ECCV 2026 (oral).

    Python 1

  3. gridpilot gridpilot Public

    An LLM agent operating a simulated power grid during cascading failure: IEEE 118-bus physics, verified tools, simulate-before-apply guardrail, and a 50-incident benchmark

    Python 1

  4. nanoinfer nanoinfer Public

    Neural-net inference engine from scratch in C++: own conv kernels, liveness-based memory planner, int8 quantization. Plus int8 GEMMs in hand-written CUDA (122.8 TOPS) and Triton (540 TOPS, matching…

    C++ 1

  5. replay-gap replay-gap Public

    Branching rollouts show that replay-based evaluation of per-step model routing in LLM agents scores states that never occur. Efficient Reasoning Workshop @ COLM 2026.

    Python 1

  6. AshrithaG AshrithaG Public

    1