Skip to content

Latest commit

 

History

286 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Nixie

Fast, transparent and memory-efficient GPU multiplexing

GitHub Actions License

About

Nixie is an efficient service for transparent GPU multiplexing without worrying about insufficient VRAM/DRAM capacity on Linux.

Our highlighted features include:

  • Optimizing for modern large AI models.
  • Transparent GPU multiplexing, supporting popular applications like llama.cpp, SGLang, ComfyUI and more out of the box.
  • Low task switching latency
  • Configurable maximum memory size depending on user needs.

Check our paper for technical details.

Getting Started

Installation

Prerequisites:

  • Rust (>=1.90 stable)

Build the project with:

git clone https://github.com/XOR-op/nixie
cd nixie
cargo build --release

Launch Applications With Nixie

First, we need to start Nixie daemon:

nixie daemon

To configure the capacity of memory used, run with

nixie daemon --shmem <pinned-memory-size> --hostmem <paged-memory-size>
# For example, to use 16GB of pinned memory and 32GB of paged memory:
nixie daemon --shmem 16g --hostmem 32g

Then, we can launch applications with Nixie:

nixie run <app-name> <app-args>

To specify which GPU to use, assuming we use GPU 0:

nixie run -d 0 <app-name> <app-args>

CLI Reference

See CLI Reference for more details on the available commands and options.

Citation

If you find Nixie useful, please consider citing our research work:

@inproceedings{xu2026nixie,
  title={Nixie: Efficient, Transparent Temporal Multiplexing for Consumer $\{$GPUs$\}$},
  author={Xu, Yechen and Wang, Yifei and Ren, Nathanael and Chen, Yiran and Zhuo, Danyang},
  booktitle={20th USENIX Symposium on Operating Systems Design and Implementation (OSDI 26)},
  pages={2085--2101},
  year={2026}
}

About

An efficient service for transparent GPU multiplexing with VRAM oversubscription, OSDI '26

Resources

Stars

12 stars

Watchers

1 watching

Forks

Releases

Contributors

Languages