amd / Phi-4-reasoning-plus-w8a8-llmcompressor

huggingface.co
Total runs: 508
24-hour runs: -9
7-day runs: -11
30-day runs: -64
Model's Last Updated: August 05 2026
text-generation

Introduction of Phi-4-reasoning-plus-w8a8-llmcompressor

Model Details of Phi-4-reasoning-plus-w8a8-llmcompressor

Phi-4-reasoning-plus-w8a8-llmcompressor-v0.12.0

Model Overview
  • Model Architecture: Phi3ForCausalLM
    • Input: Text
    • Output: Text
  • Source Model: Phi-4-reasoning-plus
  • Supported Hardware: AMD EPYC (CPU inference)
  • Preferred Operating System: Linux
  • Inference Engine: vLLM v0.26.0
  • Quantization Framework: LLM Compressor v0.12.0
  • Quantization Method: 8-bit Weight, 8-bit Dynamic Activation Quantization (W8A8)
  • Compatible Stack:
    • ZenDNN v6.1.0
    • ZenTorch v2.11.0.3
    • PyTorch v2.11.0
    • LLM Compressor v0.12.0
    • vLLM v0.26.0

This is a quantized version of Phi-4-reasoning-plus created by AMD using LLM Compressor (compressed-tensors) for ZenDNN-optimized CPU inference.

Quantization

The model was quantized from Phi-4-reasoning-plus using LLM Compressor via the Round-to-Nearest (RTN) algorithm. This reduces the model weights from 27.3 GiB to 14.6 GiB on disk (~46% reduction).

  • Method: 8-bit Weight, 8-bit Dynamic Activation Quantization (W8A8)
  • Config: compressed-tensors, num_bits=8, type=int, symmetric=true
  • Weights: INT8, symmetric, per-channel (static)
  • Activations: INT8, symmetric, per-token (dynamic)
  • Ignored modules: lm_head
import torch
from transformers import AutoModelForCausalLM, AutoTokenizer

from llmcompressor import oneshot
from llmcompressor.modifiers.quantization import QuantizationModifier

model_id = "microsoft/Phi-4-reasoning-plus"
output_dir = "./Phi-4-reasoning-plus-w8a8-llmcompressor-v0.12.0"

# Step 1: Load the BF16 model and tokenizer
model = AutoModelForCausalLM.from_pretrained(
    model_id,
    dtype=torch.bfloat16,
    device_map="cpu",
    trust_remote_code=True,
)
tokenizer = AutoTokenizer.from_pretrained(model_id, trust_remote_code=True)

# Step 2: Define the W8A8 recipe
recipe = QuantizationModifier(
    scheme="W8A8",
    targets=["Linear"],
    ignore=["lm_head"],
)

# Step 3: One-shot quantize and save in compressed-tensors format
oneshot(
    model=model,
    recipe=recipe,
    tokenizer=tokenizer,
    output_dir=output_dir,
    trust_remote_code_model=True,
)

# Smoke test
inputs = tokenizer("What are we having for dinner?", return_tensors="pt")
output = model.generate(**inputs, max_new_tokens=30)
print(tokenizer.decode(output[0], skip_special_tokens=True))
Quick Start
Use with vLLM
from vllm import LLM, SamplingParams

model = LLM(
    model="amd/Phi-4-reasoning-plus-w8a8-llmcompressor-v0.12.0",
    dtype="bfloat16",
)

sampling_params = SamplingParams(temperature=0.7, max_tokens=256)
outputs = model.generate(["Hello, how are you?"], sampling_params)
print(outputs[0].outputs[0].text)
Requirements
torch==2.11.0
zentorch==2.11.0.3
vllm==0.26.0
llmcompressor==0.12.0
OpenMP Setup

For optimal performance, set LD_PRELOAD with libomp.so (LLVM OpenMP) or libiomp5.so (Intel OpenMP):

# Using LLVM OpenMP (llvmopenmp)
export LD_PRELOAD=$(find /path/to/env -name "libomp.so" | head -1)

# Or using Intel OpenMP (libiomp)
export LD_PRELOAD=$(find /path/to/env -name "libiomp5.so" | head -1)

Note: Set LD_PRELOAD before launching vLLM or any inference script.

Evaluation

The model was evaluated against the BF16 (unquantized) baseline on standard benchmarks using lm-evaluation-harness with the vLLM engine.

Benchmark BF16 Baseline W8A8 (this model) Recovery
GSM8K (5-shot) 0.8704 0.8893 102.17%
Evaluation Command
lm_eval \
    --model vllm \
    --model_args pretrained=amd/Phi-4-reasoning-plus-w8a8-llmcompressor-v0.12.0,dtype=bfloat16 \
    --tasks gsm8k \
    --batch_size auto \
    --trust_remote_code \
    --num_fewshot 5 \
    --apply_chat_template \
    --log_samples \
    --gen_kwargs "max_gen_toks=2048" \
    --output_path .
Limitations
  • Version Lock: This model is compatible with ZenDNN v6.1.0 / ZenTorch v2.11.0.3 / PyTorch v2.11.0. It may not load correctly on other versions.
  • CPU Only: This model is optimized for AMD EPYC CPU inference via ZenDNN. It is not intended for GPU inference.
License

This model is distributed under the same license as the source model. See the LICENSE file for details.

Modifications copyright (c) 2026 Advanced Micro Devices, Inc. All rights reserved.

Runs of amd Phi-4-reasoning-plus-w8a8-llmcompressor on huggingface.co

508
Total runs
-9
24-hour runs
-1
3-day runs
-11
7-day runs
-64
30-day runs

More Information About Phi-4-reasoning-plus-w8a8-llmcompressor huggingface.co Model

More Phi-4-reasoning-plus-w8a8-llmcompressor license Visit here:

https://choosealicense.com/licenses/mit

Phi-4-reasoning-plus-w8a8-llmcompressor huggingface.co

Phi-4-reasoning-plus-w8a8-llmcompressor huggingface.co is an AI model on huggingface.co that provides Phi-4-reasoning-plus-w8a8-llmcompressor's model effect (), which can be used instantly with this amd Phi-4-reasoning-plus-w8a8-llmcompressor model. huggingface.co supports a free trial of the Phi-4-reasoning-plus-w8a8-llmcompressor model, and also provides paid use of the Phi-4-reasoning-plus-w8a8-llmcompressor. Support call Phi-4-reasoning-plus-w8a8-llmcompressor model through api, including Node.js, Python, http.

Phi-4-reasoning-plus-w8a8-llmcompressor huggingface.co Url

https://huggingface.co/amd/Phi-4-reasoning-plus-w8a8-llmcompressor

amd Phi-4-reasoning-plus-w8a8-llmcompressor online free

Phi-4-reasoning-plus-w8a8-llmcompressor huggingface.co is an online trial and call api platform, which integrates Phi-4-reasoning-plus-w8a8-llmcompressor's modeling effects, including api services, and provides a free online trial of Phi-4-reasoning-plus-w8a8-llmcompressor, you can try Phi-4-reasoning-plus-w8a8-llmcompressor online for free by clicking the link below.

amd Phi-4-reasoning-plus-w8a8-llmcompressor online free url in huggingface.co:

https://huggingface.co/amd/Phi-4-reasoning-plus-w8a8-llmcompressor

Phi-4-reasoning-plus-w8a8-llmcompressor install

Phi-4-reasoning-plus-w8a8-llmcompressor is an open source model from GitHub that offers a free installation service, and any user can find Phi-4-reasoning-plus-w8a8-llmcompressor on GitHub to install. At the same time, huggingface.co provides the effect of Phi-4-reasoning-plus-w8a8-llmcompressor install, users can directly use Phi-4-reasoning-plus-w8a8-llmcompressor installed effect in huggingface.co for debugging and trial. It also supports api for free installation.

Phi-4-reasoning-plus-w8a8-llmcompressor install url in huggingface.co:

https://huggingface.co/amd/Phi-4-reasoning-plus-w8a8-llmcompressor

Url of Phi-4-reasoning-plus-w8a8-llmcompressor

Phi-4-reasoning-plus-w8a8-llmcompressor huggingface.co Url

Provider of Phi-4-reasoning-plus-w8a8-llmcompressor huggingface.co

amd
ORGANIZATIONS

Other API from amd

huggingface.co

Total runs: 184.5K
Run Growth: 97.3K
Growth Rate: 52.72%
Updated:April 14 2026
huggingface.co

Total runs: 114.2K
Run Growth: -5.4K
Growth Rate: -4.76%
Updated:July 17 2026
huggingface.co

Total runs: 104.0K
Run Growth: 12.6K
Growth Rate: 12.15%
Updated:June 19 2026
huggingface.co

Total runs: 52.6K
Run Growth: -5.8K
Growth Rate: -11.01%
Updated:July 01 2026
huggingface.co

Total runs: 24.6K
Run Growth: 13.9K
Growth Rate: 56.56%
Updated:July 27 2026
huggingface.co

Total runs: 12.4K
Run Growth: 4.6K
Growth Rate: 37.39%
Updated:October 09 2024
huggingface.co

Total runs: 11.1K
Run Growth: 1.2K
Growth Rate: 10.43%
Updated:August 12 2025
huggingface.co

Total runs: 2.6K
Run Growth: -15
Growth Rate: -0.59%
Updated:June 19 2026
huggingface.co

Total runs: 1.3K
Run Growth: -37.3K
Growth Rate: -2875.40%
Updated:June 19 2026
huggingface.co

Total runs: 987
Run Growth: -2.8K
Growth Rate: -295.15%
Updated:May 27 2026
huggingface.co

Total runs: 547
Run Growth: -4.4K
Growth Rate: -812.25%
Updated:June 19 2026
huggingface.co

Total runs: 512
Run Growth: -396
Growth Rate: -77.34%
Updated:November 15 2025