schuttdev commited on
Commit
21b90d6
·
verified ·
1 Parent(s): 77b1b6e

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +62 -0
README.md ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ base_model: Qwen/Qwen3.5-27B
4
+ tags:
5
+ - hipfire
6
+ - amd
7
+ - rdna
8
+ - quantized
9
+ - qwen3.5
10
+ library_name: hipfire
11
+ ---
12
+
13
+ # Qwen3.5-27B for hipfire
14
+
15
+ Pre-quantized **Qwen3.5-27B** (DeltaNet hybrid) for [hipfire](https://github.com/Kaden-Schutt/hipfire), a Rust-native LLM inference engine for AMD RDNA GPUs.
16
+
17
+ Quantized from [Qwen/Qwen3.5-27B](https://huggingface.co/Qwen/Qwen3.5-27B).
18
+
19
+ ## Files
20
+
21
+ | File | Quant | Size | Min VRAM | Speed (5700 XT) |
22
+ |------|-------|------|----------|-----------------|
23
+ | qwen3.5-27b.q4.hfq | HFQ4 | 14.3GB | 16GB | TBD |
24
+ | qwen3.5-27b.hfq6.hfq | HFQ6 | 21.4GB | 24GB | TBD |
25
+
26
+ ## GPU Compatibility
27
+
28
+ | GPU | VRAM | HFQ4 | HFQ6 |
29
+ |-----|------|------|------|
30
+ | RX 5700 XT | 8GB | No | No |
31
+ | RX 6800 XT | 16GB | Yes | No |
32
+ | RX 7900 XTX | 24GB | Yes | Yes |
33
+ | RX 9070 | 16GB | Yes | No |
34
+
35
+ ## Usage
36
+
37
+ ```bash
38
+ # Install hipfire
39
+ curl -L https://raw.githubusercontent.com/Kaden-Schutt/hipfire/master/scripts/install.sh | bash
40
+
41
+ # Pull and run
42
+ hipfire pull qwen3.5:27b
43
+ hipfire run qwen3.5:27b "Hello"
44
+ ```
45
+
46
+ ## Quantization Formats
47
+
48
+ - **HFQ4**: 4-bit, 256-weight groups (0.53 B/w). Best speed.
49
+ - **HFQ6**: 6-bit, 256-weight groups (0.78 B/w). Best quality. ~15% slower.
50
+
51
+ Both include embedded tokenizer and model config.
52
+
53
+ ## About hipfire
54
+
55
+ Rust + HIP inference engine for AMD consumer GPUs (RDNA1–RDNA4). No Python in the hot path. 9x faster than llama.cpp+ROCm on the same hardware.
56
+
57
+ - GitHub: [Kaden-Schutt/hipfire](https://github.com/Kaden-Schutt/hipfire)
58
+ - All models: [docs/MODELS.md](https://github.com/Kaden-Schutt/hipfire/blob/master/docs/MODELS.md)
59
+
60
+ ## License
61
+
62
+ Model weights subject to original [Qwen license](https://huggingface.co/Qwen/Qwen3.5-27B). hipfire engine: MIT.