a compact ROCmFPX / ActiveFPX GGUF using the CIRU Qwen3.8 v3-style precision allocation;
a model-specific full-W8 PromptForge FFN sidecar;
a model-specific full-W8 PromptForge Gated DeltaNet sidecar.
The GGUF can be used on its own with a compatible ROCmFPX-capable llama.cpp runtime. The .pfs files are optional serving-time compute views for CIRU PromptForge and trade additional memory for substantially faster supported prompt-processing paths.
Model provenance
Original model
The architecture and original model weights originate from:
CIRU's Qwen3.8 work adds model-specific gfx1151 paths including:
fused FFN gate/up processing;
accelerated SwiGLU/down projection;
merged QKV/Z projection for Gated DeltaNet layers;
prepacked W8 PromptForge compute views;
small-row W8 execution;
ROCmFPX low-bit decode paths;
native Qwen3.8 MTP support.
About this v3-style quant
The compact GGUF in this repository was generated from the Heretic-Ara BF16 source using the per-tensor precision allocation from CIRU's Qwen3.8 v3 release as the reference.
That includes the important v3 storage decisions such as:
The FFNEQ part refers to an FFN-equalization treatment in CIRU's model-production process.
This Heretic build reproduces the v3 tensor-type / precision allocation, but does not claim to reproduce CIRU's unpublished FFNEQ weight transformation unless explicitly stated otherwise.
Then start a compatible llama.cpp / ROCmFPX server with the GGUF normally.
The GGUF remains the authoritative model representation. PromptForge sidecars are alternate compute views used only on qualified execution paths.
Vision support
Qwen3.8-27B is natively multimodal, but this repository currently focuses on the language-model GGUF and PromptForge language-model sidecars.
No vision projector is assumed by the launch command above.
If adding multimodal support, use a compatible Qwen3.8 projector whose provenance has been verified against the source checkpoint rather than blindly mixing unrelated model artifacts.
Why the PFS files are model-specific
PromptForge does not simply contain generic kernels.
The sidecars contain quantized/prepacked views of the actual model weights.
Mixing sidecars between different fine-tunes or ablations may silently cause PromptForge execution to use weights from a different model.
Always keep the GGUF and .pfs files from the same repository/build together.
Hardware target
Primary target:
text
1AMD Ryzen AI Max+ 395
2Radeon 8060S
3gfx1151
4Strix Halo
The ROCmFPX formats themselves may work on other AMD hardware, but PromptForge contains specialized model- and kernel-level paths and should not be assumed portable without testing.
CIRU's published Qwen3.8 performance work was developed specifically around gfx1151.
Notes on "uncensored"
This repository inherits the behavioral modification of the Heretic-Ara source model.
"Uncensored" or "decensored" describes the model-building goal; it is not a guarantee that every prompt will produce a particular response, nor that the model is more accurate than the original Qwen checkpoint.
Quantization can also introduce small numerical differences relative to BF16.
Users should evaluate the model for their own workloads.