AI Infra Interviews logo
TCORE AI INFRASTRUCTURE

Tenstorrent AI Infrastructure Engineer interview questions

Tenstorrent builds RISC-V-based AI accelerators with an open software stack and hires across the stack: kernel and runtime engineers for its Tensix cores, compiler engineers, and the systems engineers who scale the parts into servers and clusters. The company's open-source approach means much of the software (the runtime, the kernel library, the model demos) is public, which makes preparation unusually concrete: read the stack, understand how a model is mapped onto the cores, and be ready to discuss kernel and memory-hierarchy trade-offs on a non-GPU architecture. We have not found a reliable public breakdown of the Tenstorrent loop and do not list unconfirmed rounds.

CHIP AND PLATFORM VENDORS

They build the silicon and the software that drives it, so depth in the team's own domain outranks breadth almost everywhere.

Loop leans on: Microarchitecture, kernels, compilers, interconnect, benchmarking. Compare the other chip and platform vendors

The Tenstorrent AI Infrastructure Engineer interview process

Limited public data
RoleKernel, compiler and systems engineer
No reliable public breakdown of the loop; requirements inferred from the open-source stack and postings. Rounds unconfirmed.
WHAT THEY'RE EVALUATING
  • Kernel and runtime work on Tensix cores, open source
  • Scaling accelerators into servers and clusters

Compiled from our research and publicly available information (candidate reports and company interview guides). Interview loops change and are continuously iterated, and they vary by team, level, and region. Treat this as directional preparation, not an official spec, and confirm the exact rounds with your recruiter or hiring point of contact.

Tenstorrent AI Infrastructure Engineer salary

What we can trace, labelled by where it came from. We publish a band only where there is a source behind it, so some of this page is a gap rather than a number.

NO TRACEABLE BAND

We have not found a compensation figure for this role at Tenstorrent that we can trace to an employer posting or a public aggregator. Rather than publish an estimate, we are naming the gap. Their careers page is the authority, and postings in some jurisdictions are required to state a range.

HIRING FROM INDIA
Global AI lab or cloud, India-based hire

A US or EU AI company with no large India engineering centre. An India-based hire here is usually a global-remote contract, often USD-denominated, which is the highest-paying route into the role from India and also the hardest to get; Together AI and Nebius posted India-located infrastructure roles of this kind in 2026.

LEVELREPORTED FOR THIS EMPLOYER TYPE
Junior (0-2 yrs)₹35 LPA - ₹55 LPA
Mid (3-6 yrs)₹55 LPA - ₹90 LPA
Senior (7+ yrs)₹90 LPA - ₹1.5 Cr

Reported range for global-remote AI engineering contracts from India (2026 industry reporting), not a figure reported for this company or for this exact title. Whether an India-based hire is possible at all depends on the employer's entity and visa position; check the careers page before you plan around it.

Full method, US bands by level, and the three India tiers side by side are in the AI infra salary guide, including what actually moves your number between these tiers.

Representative AI Infrastructure Engineer questions for Tenstorrent's loop

Tenstorrent's loop draws from these tracks. Here are the highest-signal questions in each, ordered by what candidates rate most useful.

16 questions · 10 unlocked for you

Go deeper on the topics Tenstorrent's loop tests

The tracks that map to a Tenstorrent AI Infrastructure Engineer loop, ordered easy to hard.

The concepts Tenstorrent's AI Infrastructure Engineer loop assumes you know

The vocabulary and mental models behind Tenstorrent's questions, from our curriculum. Start with the foundations free; the deeper, interview-defining ideas are part of premium.

GPU & ACCELERATOR ARCHITECTURE

Foundational
GPU Execution ModelA GPU hides memory latency with parallelism instead of caches: thousands of threads in flight, scheduled in warps of 32, pinned to streaming multiprocessors that switch between warps for free whenever one stalls. Every performance conversation in an AI infra loop, from occupancy to why decode is slow, rests on this one mechanism.
Foundational
GPU Memory HierarchyA GPU has four places a byte can live, and they differ by a thousandfold in bandwidth: registers, shared memory on the SM, a chip-wide L2, and HBM off-chip. Almost every kernel optimization is a decision about which level a value is read from and how many times. Knowing the sizes and bandwidths for an H100 cold is what lets you say why a kernel is slow before you profile it.
CoreSign in
Tensor Cores and Matrix UnitsTensor cores are fixed-function units that compute a small matrix multiply-accumulate per instruction, and they are where almost all of a modern GPU's FLOPS live: 989 dense bf16 TFLOPS on an H100 against about 67 from the general-purpose lanes. Only dense, well-shaped matrix multiplication at a supported precision can use them, which is why GEMMs reach peak and nothing else does, and why precision choices are throughput choices.
Advanced🔒 Premium
Memory-Bound vs Compute-Bound KernelsEvery kernel is limited by one of two walls: how fast bytes arrive from HBM, or how fast the tensor cores can multiply. Which wall applies is decided by arithmetic intensity against the ridge point, and the two regimes need opposite fixes. Decode, LayerNorm and softmax are memory-bound; prefill GEMMs are compute-bound; the interview question is which one you are looking at and what you would do about it.

KERNELS & COMPILERS

Foundational
CUDA Programming ModelCUDA splits a program into a host that allocates, copies and enqueues work, and a device that runs thousands of identical threads organized as a grid of blocks. Getting the split right, and knowing that a launch returns before the kernel runs, decides whether your first live-coding kernel produces a correct number or a silent zero.
CoreSign in
Memory CoalescingA warp's 32 threads issue one memory request together, and the hardware serves it in 32-byte sectors. Coalescing is arranging addresses so those sectors are full of bytes the warp will use. It decides whether a bandwidth-bound kernel moves at the HBM rate or at an eighth of it, and it is the pattern NVIDIA's trace-classification interview question tests.
Advanced🔒 Premium
Shared Memory and Bank ConflictsShared memory is the programmer-managed SRAM inside each SM, split into 32 four-byte banks that serve one word each per cycle. When several lanes of a warp hit the same bank at different addresses the access serializes, and a 32-way conflict makes a shared-memory-bound loop run over ten times slower. Padding, XOR swizzles, cp.async and TMA are the tools that decide whether a tiled kernel gets the bandwidth it staged data for.
Advanced🔒 Premium
Occupancy and Register PressureOccupancy is the fraction of an SM's 64 warp slots that are resident, and it is capped by the 65,536 registers and 228 KB of shared memory each block consumes. It decides how much memory latency the hardware can hide for free, but the fastest kernels on a GPU routinely run at 25 percent, so the interview skill is knowing when to raise it and when to stop.

INFERENCE & SERVING

Foundational
Prefill vs DecodeAn LLM request runs in two phases with opposite hardware profiles: prefill reads the whole prompt in one compute-bound pass and decides time to first token, decode emits one token per forward pass and is bound by memory bandwidth. Every serving decision, from batch size to which GPU to buy to whether to split the two phases across machines, follows from that split.
Foundational
The KV CacheThe KV cache stores each token's attention keys and values so decode never recomputes them, turning a quadratic cost into a linear one at the price of memory that grows with every token in every concurrent sequence. Its size, 128 KB per token for Llama 3.1 8B and 320 KB for 70B in bf16, is what caps concurrency and context on a given GPU, so it decides batch size, replica count and whether a model fits at all.
CoreSign in
Continuous BatchingContinuous batching schedules at the granularity of a single decode step instead of a whole request, so a finished sequence's slot is refilled on the next iteration rather than when the longest request in the batch ends. It is the scheduling idea that turned LLM serving from a padded, half-idle GPU into one that stays full, and it decides how the engine's scheduler, memory manager and latency SLOs interact.
Advanced🔒 Premium
PagedAttentionPagedAttention stores the KV cache in fixed-size blocks scattered across HBM and maps each sequence's logical positions to physical blocks through a block table, the same trick an operating system uses for virtual memory. It removes the reservation and fragmentation waste of contiguous allocation, lets blocks be shared between sequences, and is why an engine can decide admission by counting free blocks.

CODING FOR INFRA

Foundational
The GPU Credit Scheduler PatternThe most widely reported coding problem in AI infrastructure loops is a small scheduler: accounts hold credits, jobs arrive with a cost and a priority, and you must decide which jobs run, in what order, without letting any account overspend, then extend it under follow-ups (refunds, reservations, concurrency limits, fairness). It is not a trick question; it is a test of whether you can model state cleanly, pick the right data structures, keep invariants under mutation, and talk about complexity while typing. This page works the problem from the first line to the fourth follow-up, with the code, the invariants, and the derivations.
CoreSign in
Rate-Limiting AlgorithmsA rate limiter answers one question, 'may this request proceed now?', and the three classic algorithms answer it with different shapes of fairness and memory: the token bucket allows bursts up to a capacity and refills at a rate, the leaky bucket smooths output to a fixed rate, and sliding windows count recent requests exactly or approximately. AI platforms limit in tokens as well as requests, per tenant, across many gateways, which adds two twists: a request's cost is unknown until it finishes, and the counters must be shared. This page derives each algorithm, implements the token bucket correctly, and covers both twists.
Advanced🔒 Premium
Batching Queues and BackpressureWrite a request batcher is the coding round's version of the serving engine's scheduler: requests arrive one at a time, the GPU wants them in groups, and the batcher decides when a group is full enough to send without holding anyone too long or accepting more than it can hold. The two knobs are the maximum batch size and the maximum wait, the invariant is a bounded queue, and the follow-ups (priorities, cost-aware batching, cancellation, bounded in-flight batches) are the ideas the real engines carry. This page implements the batcher in asyncio, derives what each knob buys, and walks the follow-ups.
Advanced🔒 Premium
Interval Merging and Utilization LogsGiven busy intervals per GPU, when was the whole cluster idle? What was the utilization per hour from a log of start and stop events? Which jobs overlapped? These are the interval problems of the infrastructure coding screen, and they share one tool: sort the endpoints and sweep. The sweep line turns every variant into a single pass with a counter, the sort is the only thing that costs more than linear time, and the edge cases (touching intervals, zero-length events, an unterminated start) are where candidates lose the round. This page works the standard problem and its relatives with code, tests and the complexity derivation.

Where to apply, and official Tenstorrent resources

Straight from Tenstorrent: open roles and the company's own hiring guidance. Prep here, then apply there.

External links to Tenstorrent's own pages. Roles and processes change; always confirm on the official site.

ABOUT THE ROLE
TENSTORRENT INTERVIEW FAQ
Does Tenstorrent hire AI infrastructure engineers?

Yes: kernel and runtime engineers for its Tensix architecture, compiler engineers, and systems engineers scaling the hardware into servers and clusters; check the careers page for current titles.

What does the Tenstorrent AI infrastructure interview test?
What is the Tenstorrent AI infrastructure engineer salary?

Walk into your Tenstorrent AI Infrastructure Engineer interview ready

Unlock every AI infra interview answer, ordered easy to hard, plus the full concept curriculum, for 6 months. One payment, no auto-renewal. Free questions and concepts in each track, no card needed to start.

Or create a free account to unlock more free answers per topic.

Other AI Infrastructure Engineer interviews to prep

Companies whose loops test the same tracks as Tenstorrent's.

Independent and not affiliated with Tenstorrent. All trademarks belong to their owners.