Simplify Logo
Inferact

Inferact

Open-source LLM inference engine with scalability

Member of Technical Staff - Exceptional Generalist

Full-Time
No salary listed
Mid
Bachelor's
Remote in USA
Remote

Must maintain regular overlap with Pacific Time for critical syncs.

H1B Sponsorship Available

About the job

Requirements
  • A bachelor's degree or equivalent experience in computer science, engineering, or a similar field.
  • The ability to work autonomously and drive projects to completion without close supervision.
  • Excellent asynchronous communication skills and the ability to collaborate effectively across time zones.
  • A strong track record of shipping high-impact work in complex technical environments.
  • Deep expertise in at least one of systems programming, GPU or accelerator programming, distributed systems, or machine-learning infrastructure.
  • Strong expertise in at least two of the following technical areas: CUDA kernels or equivalent technologies such as Triton, TileLang, or Pallas, with a deep understanding of GPU architecture; high-performance distributed systems in Rust, Go, or C++; Python with PyTorch internals and large language model inference systems such as vLLM, TensorRT-LLM, or SGLang; Kubernetes, container orchestration, and infrastructure-as-code at scale; or transformer architectures, KV-cache memory management, and model serving.
Responsibilities
  • Work across the entire vLLM stack, from low-level GPU kernels to high-level distributed systems.
  • Optimize inference runtime execution for large language models and diffusion models across diverse hardware and architectures.
  • Write low-level kernels and optimizations for vLLM across accelerator types.
  • Build distributed systems that enable vLLM to serve models across thousands of accelerators with minimal latency.
  • Build the operational backbone for cluster management, deployment automation, and production monitoring.
  • Identify high-leverage problems and solve them end-to-end with minimal guidance.
  • Maintain ownership of critical infrastructure and drive projects through to shipped code.
  • Maintain regular overlap with Pacific Time for critical syncs while working asynchronously with the San Francisco headquarters.
Desired Qualifications
  • Contributions to vLLM or other major open-source machine-learning or systems projects.
  • Experience with multiple accelerator platforms, including NVIDIA, AMD, TPU, and Intel.
  • Knowledge of quantization techniques, machine-learning-specific kernel optimization, or compiler technologies.
  • A track record of improving system reliability and performance at scale.
  • Written widely shared technical blogs or impactful side projects in the machine-learning infrastructure space.

About the company

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.