Full-Time

Member of Technical Staff

Inference

Inferact

Inferact

11-50 employees

Open-source LLM inference engine with scalability

Compensation Overview

$200k - $400k/yr

+ Equity + 401(k) company match

H1B Sponsorship Available

San Francisco, CA, USA

Hybrid

Remote work in the US may be considered for exceptional candidates.

Bachelor's

Category
AI & Machine Learning (1)
Required Skills
Python
PyTorch
Machine Learning
Reinforcement Learning

Get referred to Inferact

See people who can refer or advise you

Requirements
  • A Bachelor's degree or equivalent experience in computer science, engineering, or a similar field.
  • Deep understanding of transformer architectures and their variants.
  • Strong programming skills in Python with experience in PyTorch internals.
  • Experience with large language model inference systems, including vLLM, TensorRT-LLM, SGLang, or TGI.
  • Ability to read and implement model architectures and inference techniques from research papers.
  • Ability to contribute performant and maintainable code and debug in complex machine learning codebases.
Responsibilities
  • Push the boundaries of large language model and diffusion model serving.
  • Optimize how models execute across diverse hardware and architectures at the core of vLLM.
  • Develop inference engine innovations for mixture-of-experts, multimodal, and agentic model architectures.
Desired Qualifications
  • Deep understanding of KV-cache memory management, prefix caching, and hybrid model serving.
  • Familiarity with reinforcement learning frameworks and algorithms for large language models.
  • Experience with multimodal inference across audio, image, video, and text.
  • Contributions to open-source machine learning or systems infrastructure projects.
  • Implementation of core features in vLLM or other inference engine projects.
  • Contributions to vLLM integrations such as verl, OpenRLHF, Unsloth, or LlamaFactory.
  • Widely shared technical blogs or side projects on vLLM or large language model inference.

Inferact builds AI inference infrastructure by maintaining vLLM, an open-source LLM inference engine, and offering a managed enterprise inference service. vLLM uses PagedAttention to optimize GPU memory, cutting inference costs and latency while preserving model quality. The company supports multiple architectures and hardware, aligns with PyTorch Foundation governance, and pursues open-source collaboration alongside a commercial platform. Its goal is to turn AI inference into a reliable, scalable operating layer of the AI stack, separating model deployment from application development.

Company Size

11-50

Company Stage

Seed

Total Funding

$150M

Headquarters

San Francisco, California

Founded

2025

Get referred to Inferact

See people who can refer or advise you

Simplify Jobs

Simplify's Take

What believers are saying

  • Inferact raised $150 million on January 22, 2026, at an $800 million valuation.
  • August 7, 2026 Kimi K3 verification validates vLLM for production inference.
  • August 12, 2026 Qwen3.8 day-0 support and quantized weights expand enterprise demand.

What critics are saying

  • SGLang and TensorRT-LLM pressure vLLM margins; benchmark leadership flips by workload.
  • Inferact depends on NVIDIA and AMD kernel support; hardware roadmaps dictate product velocity.
  • If community adoption shifts away from vLLM, Inferact's commercial layer loses its moat.

What makes Inferact unique

  • PagedAttention keeps vLLM the de facto standard for LLM serving in 2026.
  • Inferact sells vendor-neutral inference under PyTorch Foundation governance, avoiding cloud lock-in.
  • Founders Simon Mo and Ion Stoica built Spark and Ray into standards.

Help us improve and share your feedback! Did you find this helpful?

Benefits

Health Insurance

Dental Insurance

Vision Insurance

401(k) Company Match

Growth & Insights and Company News

Headcount

6 month growth

7%

1 year growth

7%

2 year growth

7%
vLLM
Aug 12th, 2026
Day 0 support for Qwen3.8-2.4T-A95B on vLLM.

Day 0 support for Qwen3.8-2.4T-A95B on vLLM. vLLM Team and Inferact vLLM is announcing Day-0 vLLM support for Qwen3.8-2.4T-A95B. This is the first model from the Qwen family to bring a Qwen-Max-class model to open-weight release. Qwen3.8-2.4T-A95B is built on the Qwen 3.5 architecture and runs on vLLM out of the box. In addition to the official FP8 and BF16 checkpoints, Inferact has released MXFP4 and NVFP4-quantized weights that match full-precision quality while significantly reducing memory and bandwidth overhead. Qwen3.8-2.4T-A95B is a 2.4-trillion-parameter sparse MoE model featuring 512 experts. Within its 92-layer hybrid backbone, full attention is applied at every 4th layer while the remaining 69 layers run linear attention. As one of the largest open-weight models released to date, running inference requires at least two NVIDIA B300 / AMD MI355X nodes (or a single node for the FP4 quantized version). Tl;dr. * Day-0 support: Qwen3.8-2.4T-A95B reuses the Qwen 3.5 architecture and runs on vLLM from day one with no architecture changes required. * Flexible precision: FP8, BF16, NVFP4, and MXFP4 checkpoints are available. * Multi-vendor optimization: Validated across hardware partners including NVIDIA and AMD. Quick start. For NVFP4: For MXFP4: See the vLLM recipes for the full serving guide and recommended flags. FP4 quantization: quality at lower cost. To minimize inference costs and maximize GPU memory efficiency, the Inferact team quantized selected layers - including the routed experts - to FP4 weights using Round-to-Nearest (RTN) quantization with activation calibration to enable 4-bit activations. vLLM ran initial verifications to confirm that quantization accuracy remains intact. Note that increasing the reasoning budget is required to reproduce these evaluation results. | Benchmark | FP8 | NVFP4 | | GSM8K (strict / flexible) | 89.61% / 90.52% | 90.37% / 91.05% | | AIME25 @3 (avg / pass) | 87.78% / 93.33% | 92.22% / 96.67% | Optimizations. To enable efficient inference for this 2.4T parameter model, vLLM collaborated closely with NVIDIA and AMD to develop optimized kernels based on existing Qwen 3.5 support. On NVIDIA platforms, NVIDIA and Inferact co-developed ultra-fast kernels for Linear Attention (Gated Delta Rule), Attention (GQA), Dense GEMMs, and MoE routing. New fused kernels were added to reduce communication overhead. Significant effort was also dedicated to identifying the best decomposition of work to maximize performance, including combining Data Parallelism and Tensor Parallelism for Attention and Expert Parallelism for the MoE. On AMD Instinct GPUs, vLLM accelerates Qwen3.8 with AITER-fused Gated DeltaNet decode, attention, and MoE kernels, reducing kernel-launch and data-movement overhead. For Shared Expert MoE, the shared-expert path leverages highly optimized hipBLASLt GEMM kernels, while routed experts use AITER FusedMoE. AMD Quark quantization support enables efficient MXFP4 deployment, substantially reducing model memory requirements while maintaining strong accuracy. Deployment tips. The Qwen 3.8 model card recommends the following generation parameters for optimal performance: temperature=1.0, top_p=0.95, top_k=20, min_p=0.0, presence_penalty=0.0, repetition_penalty=1.0 Here is a Python client snippet to query the model once the vLLM server is running. Because Qwen 3.8 is a reasoning model, ensure you allocate a sufficient token budget for agentic workflows by setting a high max_tokens value. Acknowledgements. vLLM thank the Qwen team for releasing the model weights as well as their ongoing collaboration, and its hardware partners, NVIDIA and AMD, for their joint engineering contributions. vLLM also thank the Inferact team for delivering quantized checkpoints and end-to-end vLLM integration, as well as the broader vLLM community. Thanks for its inference partners, including DigitalOcean, Together AI, who helped with early testing.

TechCrunch
Jan 22nd, 2026
Inference startup Inferact lands $150M to commercialize vLLM | TechCrunch

The seed round values the newly formed startup at $800 million.