vLLM-Moet

(★ 526)

A vLLM patch + hand‑written SM120 SASS kernels: 2‑bit MoE experts + an FP4 "delta" cache that recovers precision — matching the official (NV)FP4 checkpoint's quality on consumer Blackwell cards

File Explorer

  • .dockerignore
  • .gitignore
  • AGENTS.md
  • Dockerfile.recipes
  • Dockerfile.sm120-v024
  • LICENSE
  • NOTICE
  • README.md

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

docker run

View Details ▼

This command is an alias of `docker container run`.

tldr docker container run

View documentation for the original command:

🔍

git clone

View Details ▼

Clone an existing repository.

git clone {{remote_repository_location}} {{path/to/directory}}

Clone an existing repository into a new directory (the default directory is the repository name):

git clone --recursive {{remote_repository_location}}

Clone an existing repository and its submodules:

git clone {{[-n|--no-checkout]}} {{remote_repository_location}}

Clone only the `.git` directory of an existing repository:

🔍

sass

View Details ▼

Convert SCSS or Sass files to CSS.

sass {{inputfile.scss|inputfile.sass}}

Convert a SCSS or Sass file to CSS and print out the result:

sass {{inputfile.scss|inputfile.sass}} {{outputfile.css}}

Convert a SCSS or Sass file to CSS and save the result to a file:

sass --watch {{inputfile.scss|inputfile.sass}}

Watch a SCSS or Sass file for changes and output or update the CSS file with same filename:

// repository documentation