CoolFace
Modelpublic

scragnog/Ace-Step-1.5-MXFP4-Quants

sourceHugging Faceupdated 5mo agoView on Hugging Face
0likes367downloads
Model Card

ACE-Step DiT Models — MXFP4 (Blackwell Tensor Core Optimised)

MXFP4 quantized DiT models for ACE-Step music generation, in GGUF format.

Compatible with [acestep.cpp](https://github.com/ServeurpersoCom/acestep.cpp) and [HOT-Step-CPP](https://github.com/scragnog/HOT-Step-CPP).

What is MXFP4?

MXFP4 (Microscaling FP4) is a 4-bit floating point format from the Open Compute Project MX Specification. Unlike integer quantization (Q4KM etc.), MXFP4 stores weights as E2M1 floating point values with shared E8M0 block scales.

On NVIDIA Blackwell GPUs (RTX 5090, RTX 5080, RTX 5070 Ti, etc.), MXFP4 models use native FP4 Tensor Core instructions — the hardware decodes and multiplies FP4 values directly, without dequantization overhead. This provides measurable speedups over traditional quantization formats.

On older NVIDIA GPUs (Ampere, Ada Lovelace, Turing), MXFP4 models still work correctly — the engine falls back to INT8 dp4a matmul with software dequantization. You'll get the same quality and memory savings, just without the Tensor Core speed boost.

Benchmark Results

Tested on RTX 5090 (Blackwell) with acestep-v15-merge-base-turbo-xl-ta-0.5:

Quality (Listening Test — Full Quality ✅)

MXFP4 passed subjective listening tests with no audible degradation compared to Q4KM and only minimal loss compared to BF16.

Speed (Blackwell Tensor Core Advantage)

WorkloadQ4_K_MNVFP4IQ4_XS**MXFP4**
30s / 60 steps12.1s6.0s6.0s6.0s
60s / 100 steps12.1s14.1s12.0s10.0s
120s / 200 steps22.1s24.1s21.1s18.1s

MXFP4 is 22% faster than Q4_K_M and 33% faster than NVFP4 on compute-heavy workloads — same file size, same bits per weight, purely from native FP4 Tensor Core acceleration.

Memory

Model SizeBF16Q4_K_M**MXFP4**Compression
Standard4,570 MB2,401 MB1,223 MB3.7x
XL9,516 MB2,851 MB2,537 MB3.8x

Available Models

Standard Models (~1.2 GB each)

FilenameDescription
acestep-v15-base-MXFP4.ggufV1.5 base model
acestep-v15-sft-MXFP4.ggufV1.5 SFT (supervised fine-tuned)
acestep-v15-sftturbo50-MXFP4.ggufV1.5 SFT + Turbo 50%
acestep-v15-turbo-MXFP4.ggufV1.5 Turbo (fewer steps needed)
acestep-v15-turbo-continuous-MXFP4.ggufV1.5 Turbo Continuous
acestep-v15-turbo-shift1-MXFP4.ggufV1.5 Turbo with shift=1
acestep-v15-turbo-shift3-MXFP4.ggufV1.5 Turbo with shift=3

XL Models (~2.5 GB each)

FilenameDescription
acestep-v15-xl-base-MXFP4.ggufV1.5 XL base model
acestep-v15-xl-sft-MXFP4.ggufV1.5 XL SFT
acestep-v15-xl-sftturbo50-MXFP4.ggufV1.5 XL SFT + Turbo 50%
acestep-v15-xl-turbo-MXFP4.ggufV1.5 XL Turbo
acestep-v15-merge-base-turbo-xl-ta-0.5-MXFP4.ggufXL merge: base + turbo (α=0.5)
acestep-v15-merge-sft-turbo-xl-ta-0.3-MXFP4.ggufXL merge: SFT + turbo (α=0.3)
acestep-v15-merge-sft-turbo-xl-ta-0.7-MXFP4.ggufXL merge: SFT + turbo (α=0.7)

Usage

With HOT-Step-CPP

  1. 1.Place the .gguf files in your acestep.cpp/models/ directory
  2. 2.Launch HOT-Step-CPP — models appear automatically in the DiT model dropdown
  3. 3.Select any MXFP4 model and generate as normal

With acestep.cpp CLI

bash
./ace-synth \
  --dit-model models/acestep-v15-xl-turbo-MXFP4.gguf \
  --lm-model models/acestep-5Hz-lm-1.7B-Q8_0.gguf \
  --vae-model models/vae-BF16.gguf \
  --caption "upbeat synth pop, 120bpm, electronic drums" \
  --lyrics "[verse]\nDancing through the neon lights" \
  --duration 30 \
  --steps 60 \
  --output output.wav

GPU Compatibility

These models are compatible with acestep.cpp and HOT-Step-CPP on any supported GPU. The Blackwell Tensor Core optimisation activates automatically when running on Blackwell hardware — no configuration needed.

GPU FamilyArchitectureWorks?Native FP4 TCExpected Benefit
RTX 5090/5080/5070 Ti/5070Blackwell✅✅ YesFastest — native FP4 Tensor Cores
RTX 4090/4080/4070Ada Lovelace✅❌ FallbackSame quality + compression, dp4a matmul
RTX 3090/3080/3070Ampere✅❌ FallbackSame quality + compression, dp4a matmul
RTX 2080/2070Turing✅❌ FallbackSame quality + compression, dp4a matmul
AMD (ROCm)RDNA/CDNA✅❌ FallbackSame quality + compression, software path
Tip: On non-Blackwell GPUs, MXFP4 provides the same ~3.8x compression and quality as Q4KM, but without the speed advantage. If you're on Ada Lovelace or older and want maximum speed, Q4KM is equally good. MXFP4 shines specifically on Blackwell.

Quantization Details

  • —Source format: BF16 GGUF
  • —Target format: MXFP4 (E2M1 values + E8M0 block scales)
  • —Block size: 32 elements per scale
  • —Bits per weight: ~4.5 (including scale overhead)
  • —Quantizer: quantize-exp from acestep.cpp
  • —Promoted tensors: Embedding, output projection, and 1D tensors (biases, norms) are kept at F32 for stability

Technical Details

On Blackwell, the GGML engine uses the PTX instruction:

mma.sync.aligned.kind::mxf4.block_scale.scale_vec::2X.m16n8k64.row.col.f32.e2m1.e2m1.f32.ue8m0

This is a native FP4 matrix-multiply-accumulate that operates directly on E2M1 data with E8M0 scales — no dequantization step needed. The result is accumulated in FP32 for numerical stability.

License

These quantized models inherit the license of the original ACE-Step 1.5 project.

Credits

  • —ACE-Step 1.5 — Original model and training by the ACE-Step team
  • —acestep.cpp — C++/CUDA inference engine
  • —HOT-Step-CPP — Full-featured music generation UI
  • —GGML — Tensor library with Blackwell FP4 Tensor Core support