psynote123 commited on
Commit
2b4fbcc
·
verified ·
1 Parent(s): 3e7d43c

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +55 -0
README.md ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: other
3
+ license_name: thestage-ai-proprietary
4
+ library_name: qlip
5
+ tags:
6
+ - tensorrt
7
+ - qlip
8
+ - thestage
9
+ - diffusion
10
+ - acceleration
11
+ - lora
12
+ ---
13
+
14
+ # Precompiled TensorRT Engines by Qlip
15
+
16
+ Precompiled [Qlip](https://thestage.ai) engines for accelerated diffusion model inference. Base model weights are **not** included.
17
+
18
+ For supported models, benchmarks, and usage instructions see [ComfyUI-Qlip](https://github.com/TheStageAI/ComfyUI-Qlip).
19
+
20
+ ## Usage
21
+
22
+ ### ComfyUI (automatic download)
23
+
24
+ In the **Qlip Engines Loader** node, set the `hf_repo` input. Engines are downloaded once and cached locally.
25
+
26
+ ### Manual download
27
+
28
+ ```bash
29
+ pip install huggingface-hub
30
+ huggingface-cli download TheStageAI/<repo-name> \
31
+ --local-dir ./engines \
32
+ --include "models/H100/<variant>/*"
33
+ ```
34
+
35
+ ## Installation
36
+
37
+ ```bash
38
+ # Qlip core
39
+ pip install 'qlip.core[nvidia]' \
40
+ --extra-index-url https://thestage.jfrog.io/artifactory/api/pypi/pypi-thestage-ai-production/simple
41
+
42
+ # elastic_models (LoRA runtime support)
43
+ pip install 'thestage-elastic-models[nvidia]' \
44
+ --extra-index-url https://thestage.jfrog.io/artifactory/api/pypi/pypi-thestage-ai-production/simple
45
+ ```
46
+
47
+ ## Requirements
48
+
49
+ - NVIDIA GPU with CUDA 12.x
50
+ - TensorRT 10.13.3.9 (must match compilation version)
51
+ - Engines are GPU-architecture specific — recompile after changing hardware
52
+
53
+ ## License
54
+
55
+ Proprietary. Powered by [TheStage AI](https://thestage.ai).