Image-Text-to-Text
Transformers
Safetensors
mage_vl
text-generation
mage-vl
vision-language-model
quantization
fp8
w8a8
w8a16
blackwell
conversational
custom_code
Instructions to use ajh-code/Mage-VL-FP8-W8A8-W8A16 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use ajh-code/Mage-VL-FP8-W8A8-W8A16 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="ajh-code/Mage-VL-FP8-W8A8-W8A16", trust_remote_code=True) messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] pipe(text=messages)# Load model directly from transformers import AutoModelForCausalLM model = AutoModelForCausalLM.from_pretrained("ajh-code/Mage-VL-FP8-W8A8-W8A16", trust_remote_code=True, device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use ajh-code/Mage-VL-FP8-W8A8-W8A16 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "ajh-code/Mage-VL-FP8-W8A8-W8A16" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "ajh-code/Mage-VL-FP8-W8A8-W8A16", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker
docker model run hf.co/ajh-code/Mage-VL-FP8-W8A8-W8A16
- SGLang
How to use ajh-code/Mage-VL-FP8-W8A8-W8A16 with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "ajh-code/Mage-VL-FP8-W8A8-W8A16" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "ajh-code/Mage-VL-FP8-W8A8-W8A16", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "ajh-code/Mage-VL-FP8-W8A8-W8A16" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "ajh-code/Mage-VL-FP8-W8A8-W8A16", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }' - Docker Model Runner
How to use ajh-code/Mage-VL-FP8-W8A8-W8A16 with Docker Model Runner:
docker model run hf.co/ajh-code/Mage-VL-FP8-W8A8-W8A16
File size: 16,907 Bytes
84bcce6 1eb2c83 84bcce6 1eb2c83 84bcce6 1eb2c83 84bcce6 1eb2c83 84bcce6 1eb2c83 84bcce6 1eb2c83 84bcce6 1eb2c83 84bcce6 1eb2c83 84bcce6 1eb2c83 84bcce6 1eb2c83 84bcce6 1eb2c83 84bcce6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 | """Portable Mage-VL FP8 and NVFP4 linear modules.
This file is loaded as Hugging Face remote code. The checkpoint config
selects one format before the state dictionary is materialized, so the
original BF16 language projection weights are never allocated or requested.
"""
from __future__ import annotations
import hashlib
import os
from functools import lru_cache
from pathlib import Path
from typing import Any
import torch
import torch.nn.functional as F
from torch import nn
LANGUAGE_PROJECTION_ROLES = {
"q_proj",
"k_proj",
"v_proj",
"o_proj",
"gate_proj",
"up_proj",
"down_proj",
}
_SMALLM_SOURCE_ROOT: Path | None = None
def _configure_smallm_source(model_name_or_path: str) -> None:
"""Resolve native sources from a local repo or Hugging Face snapshot."""
global _SMALLM_SOURCE_ROOT
candidate = Path(model_name_or_path).expanduser()
local_root = candidate / "native" / "smallm_gemv"
required = ("smallm_gemv.cpp", "smallm_gemv.cu", "smallm_gemv.h")
if all((local_root / name).is_file() for name in required):
_SMALLM_SOURCE_ROOT = local_root.resolve()
return
if not model_name_or_path:
raise RuntimeError("Mage-VL small-M source repository is unspecified")
from transformers.utils.hub import cached_file
resolved = [
Path(
cached_file(
model_name_or_path,
f"native/smallm_gemv/{name}",
)
)
for name in required
]
parents = {path.parent.resolve() for path in resolved}
if len(parents) != 1:
raise RuntimeError(
"small-M native sources resolved to different directories: "
f"{sorted(str(value) for value in parents)}"
)
_SMALLM_SOURCE_ROOT = parents.pop()
def _smallm_source_root() -> Path:
if _SMALLM_SOURCE_ROOT is None:
raise RuntimeError(
"small-M native sources were not configured during model setup"
)
return _SMALLM_SOURCE_ROOT
@lru_cache(maxsize=1)
def _load_smallm_extension() -> Any:
from torch.utils.cpp_extension import load
source_root = _smallm_source_root()
configured_build = os.environ.get("MAGE_VL_SMALLM_BUILD_DIR")
build_root = (
Path(configured_build).expanduser().resolve()
if configured_build
else Path(__file__).resolve().parent / ".native_build"
)
build_root.mkdir(parents=True, exist_ok=True)
os.environ.setdefault("TORCH_CUDA_ARCH_LIST", "12.0")
os.environ.setdefault("MAX_JOBS", "4")
source_hash = hashlib.sha256(
b"".join(
(source_root / name).read_bytes()
for name in (
"smallm_gemv.cpp",
"smallm_gemv.cu",
"smallm_gemv.h",
)
)
).hexdigest()[:12]
return load(
name=f"mage_vl_smallm_gemv_{source_hash}",
sources=[
str(source_root / "smallm_gemv.cpp"),
str(source_root / "smallm_gemv.cu"),
],
extra_cflags=["-O3"],
extra_cuda_cflags=["-O3", "--use_fast_math", "-lineinfo"],
extra_include_paths=[str(source_root)],
build_directory=str(build_root),
with_cuda=True,
verbose=False,
is_python_module=True,
)
def _smallm_nvfp4_linear(
value: torch.Tensor,
*,
qdata: torch.Tensor,
weight_block_scale: torch.Tensor,
weight_scale: torch.Tensor,
bias: torch.Tensor | None,
) -> torch.Tensor:
return _load_smallm_extension().linear(
value.contiguous(),
qdata,
weight_block_scale,
weight_scale,
bias,
)
def _resolve_parent(root: nn.Module, module_name: str) -> tuple[nn.Module, str]:
parent_name, separator, leaf = module_name.rpartition(".")
if not separator:
return root, module_name
return root.get_submodule(parent_name), leaf
def _empty_like_source(
source: nn.Linear,
shape: tuple[int, ...],
dtype: torch.dtype,
) -> torch.Tensor:
return torch.empty(shape, dtype=dtype, device=source.weight.device)
class MageVLScaledFP8Linear(nn.Module):
"""W8A8 prefill with optional resident-weight W8A16 small-M decode."""
def __init__(
self,
source: nn.Linear,
*,
role: str,
smallm_backend: str,
smallm_threshold: int,
smallm_roles: set[str],
) -> None:
super().__init__()
if smallm_backend not in {"off", "w8a16_gemv"}:
raise ValueError(f"unsupported FP8 small-M backend: {smallm_backend}")
if smallm_threshold <= 0:
raise ValueError("FP8 small-M threshold must be positive")
self.in_features = int(source.in_features)
self.out_features = int(source.out_features)
self.role = role
self.smallm_backend = (
smallm_backend if role in smallm_roles else "off"
)
self.smallm_threshold = int(smallm_threshold)
self.register_buffer(
"qdata",
_empty_like_source(
source,
(self.out_features, self.in_features),
torch.float8_e4m3fn,
),
persistent=True,
)
self.register_buffer(
"weight_scale",
_empty_like_source(source, (), torch.float32),
persistent=True,
)
if source.bias is None:
self.bias_bf16 = None
else:
self.register_buffer(
"bias_bf16",
_empty_like_source(
source,
(self.out_features,),
torch.bfloat16,
),
persistent=True,
)
def _weight_quantized_tensor(self) -> Any:
from comfy_kitchen.tensor import QuantizedTensor, TensorCoreFP8Layout
params = TensorCoreFP8Layout.Params(
scale=self.weight_scale,
orig_dtype=torch.bfloat16,
orig_shape=(self.out_features, self.in_features),
)
return QuantizedTensor(
self.qdata,
"TensorCoreFP8Layout",
params,
)
def forward(self, value: torch.Tensor) -> torch.Tensor:
from comfy_kitchen.tensor import QuantizedTensor
input_shape = tuple(value.shape)
flattened = value.reshape(-1, input_shape[-1]).contiguous()
if (
self.smallm_backend == "w8a16_gemv"
and flattened.shape[0] <= self.smallm_threshold
):
from .fp8_decode_runtime import smallm_fp8_linear
output = smallm_fp8_linear(
flattened,
qdata=self.qdata,
weight_scale=self.weight_scale,
bias=self.bias_bf16,
)
return output.reshape(*input_shape[:-1], self.out_features)
quantized_input = QuantizedTensor.from_float(
flattened,
"TensorCoreFP8Layout",
)
output = F.linear(
quantized_input,
self._weight_quantized_tensor(),
None,
)
if self.bias_bf16 is not None:
output = output + self.bias_bf16
return output.reshape(*input_shape[:-1], self.out_features)
class MageVLNVFP4Linear(nn.Module):
"""Native W4A4 prefill with optional packed-weight W4A16 small-M decode."""
def __init__(
self,
source: nn.Linear,
*,
role: str,
smallm_backend: str,
smallm_threshold: int,
smallm_roles: set[str],
) -> None:
super().__init__()
self.in_features = int(source.in_features)
self.out_features = int(source.out_features)
self.role = role
self.smallm_backend = (
smallm_backend if role in smallm_roles else "off"
)
self.smallm_threshold = int(smallm_threshold)
self.register_buffer(
"qdata",
_empty_like_source(
source,
(self.out_features, self.in_features // 2),
torch.uint8,
),
persistent=True,
)
self.register_buffer(
"weight_scale",
_empty_like_source(source, (), torch.float32),
persistent=True,
)
self.register_buffer(
"weight_block_scale",
_empty_like_source(
source,
(self.out_features, self.in_features // 16),
torch.float8_e4m3fn,
),
persistent=True,
)
if source.bias is None:
self.bias_bf16 = None
else:
self.register_buffer(
"bias_bf16",
_empty_like_source(
source,
(self.out_features,),
torch.bfloat16,
),
persistent=True,
)
def _weight_quantized_tensor(self) -> Any:
from comfy_kitchen.tensor import QuantizedTensor, TensorCoreNVFP4Layout
params = TensorCoreNVFP4Layout.Params(
scale=self.weight_scale,
orig_dtype=torch.bfloat16,
orig_shape=(self.out_features, self.in_features),
block_scale=self.weight_block_scale,
)
return QuantizedTensor(
self.qdata,
"TensorCoreNVFP4Layout",
params,
)
def forward(self, value: torch.Tensor) -> torch.Tensor:
from comfy_kitchen.tensor import QuantizedTensor
input_shape = tuple(value.shape)
flattened = value.reshape(-1, input_shape[-1]).contiguous()
if (
self.smallm_backend == "w4a16_gemv"
and flattened.shape[0] <= self.smallm_threshold
):
output = _smallm_nvfp4_linear(
flattened,
qdata=self.qdata,
weight_block_scale=self.weight_block_scale,
weight_scale=self.weight_scale,
bias=self.bias_bf16,
)
return output.reshape(*input_shape[:-1], self.out_features)
quantized_input = QuantizedTensor.from_float(
flattened,
"TensorCoreNVFP4Layout",
)
output = F.linear(
quantized_input,
self._weight_quantized_tensor(),
None,
)
if self.bias_bf16 is not None:
output = output + self.bias_bf16
return output.reshape(*input_shape[:-1], self.out_features)
def _smallm_policy(
quantization: dict[str, Any],
*,
format_name: str,
) -> tuple[str, int, set[str]]:
backend = os.environ.get(
"MAGE_VL_SMALLM_BACKEND",
str(quantization.get("smallm_backend", "off")),
)
supported_backend = (
"w8a16_gemv"
if format_name == "scaled_fp8_w8a8"
else "w4a16_gemv"
)
if backend not in {"off", supported_backend}:
raise ValueError(f"unsupported MAGE_VL_SMALLM_BACKEND: {backend}")
threshold = int(
os.environ.get(
"MAGE_VL_SMALLM_THRESHOLD",
str(quantization.get("smallm_threshold", 1)),
)
)
if threshold <= 0:
raise ValueError("MAGE_VL_SMALLM_THRESHOLD must be positive")
configured_roles = quantization.get(
"smallm_roles",
sorted(LANGUAGE_PROJECTION_ROLES),
)
role_text = os.environ.get(
"MAGE_VL_SMALLM_ROLES",
",".join(str(value) for value in configured_roles),
)
roles = {value.strip() for value in role_text.split(",") if value.strip()}
if not roles <= LANGUAGE_PROJECTION_ROLES:
raise ValueError(
f"invalid small-M roles: {sorted(roles - LANGUAGE_PROJECTION_ROLES)}"
)
return backend, threshold, roles
def _environment_flag(name: str, default: bool) -> bool:
value = os.environ.get(name)
if value is None:
return bool(default)
normalized = value.strip().lower()
if normalized in {"1", "true", "yes", "on"}:
return True
if normalized in {"0", "false", "no", "off"}:
return False
raise ValueError(f"{name} must be one of 1/0, true/false, yes/no, or on/off")
def apply_mage_vl_quantization(
model: nn.Module,
config: Any,
) -> None:
"""Replace all 252 Qwen language projections before checkpoint loading."""
quantization = getattr(config, "mage_vl_quantization", None)
if not quantization:
return
if not isinstance(quantization, dict):
raise TypeError("mage_vl_quantization must be a dictionary")
format_name = quantization.get("format")
if format_name not in {"scaled_fp8_w8a8", "native_nvfp4_w4a4"}:
raise ValueError(f"unsupported Mage-VL quantization: {format_name}")
backend, threshold, smallm_roles = _smallm_policy(
quantization,
format_name=format_name,
)
fused_gate_up = False
fused_qkv = False
fused_gate_up_threshold = 1
fused_qkv_threshold = 1
if format_name == "scaled_fp8_w8a8":
fused_gate_up = _environment_flag(
"MAGE_VL_FP8_FUSED_GATE_UP",
bool(quantization.get("fused_gate_up", False)),
)
fused_qkv = _environment_flag(
"MAGE_VL_FP8_FUSED_QKV",
bool(quantization.get("fused_qkv", False)),
)
fused_gate_up_threshold = int(
os.environ.get(
"MAGE_VL_FP8_FUSED_GATE_UP_THRESHOLD",
str(quantization.get("fused_gate_up_threshold", 1)),
)
)
fused_qkv_threshold = int(
os.environ.get(
"MAGE_VL_FP8_FUSED_QKV_THRESHOLD",
str(quantization.get("fused_qkv_threshold", 1)),
)
)
if fused_gate_up_threshold <= 0 or fused_qkv_threshold <= 0:
raise ValueError("FP8 fusion thresholds must be positive")
if backend != "off" or fused_gate_up or fused_qkv:
from .fp8_decode_runtime import configure_fp8_decode_sources
configure_fp8_decode_sources(
str(getattr(config, "_name_or_path", ""))
)
if format_name == "native_nvfp4_w4a4" and backend != "off":
_configure_smallm_source(str(getattr(config, "_name_or_path", "")))
installed = []
for layer in range(36):
for branch, roles in (
("self_attn", ("q_proj", "k_proj", "v_proj", "o_proj")),
("mlp", ("gate_proj", "up_proj", "down_proj")),
):
for role in roles:
name = f"language_model.layers.{layer}.{branch}.{role}"
parent, leaf = _resolve_parent(model, name)
source = getattr(parent, leaf)
if not isinstance(source, nn.Linear):
raise TypeError(
f"{name}: expected nn.Linear, got "
f"{type(source).__name__}"
)
if format_name == "scaled_fp8_w8a8":
replacement = MageVLScaledFP8Linear(
source,
role=role,
smallm_backend=backend,
smallm_threshold=threshold,
smallm_roles=smallm_roles,
)
else:
replacement = MageVLNVFP4Linear(
source,
role=role,
smallm_backend=backend,
smallm_threshold=threshold,
smallm_roles=smallm_roles,
)
setattr(parent, leaf, replacement)
installed.append(name)
if len(installed) != 252:
raise RuntimeError(
f"expected 252 quantized language projections, got {len(installed)}"
)
runtime_manifest = {
"format": format_name,
"smallm_backend": backend,
"smallm_threshold": threshold,
"smallm_roles": sorted(smallm_roles),
"fused_gate_up": fused_gate_up,
"fused_gate_up_threshold": fused_gate_up_threshold,
"fused_qkv": fused_qkv,
"fused_qkv_threshold": fused_qkv_threshold,
}
if format_name == "scaled_fp8_w8a8":
from .fp8_decode_runtime import (
install_fp8_fused_gate_up,
install_fp8_fused_qkv,
)
if fused_gate_up:
runtime_manifest["gate_up_install"] = install_fp8_fused_gate_up(
model,
threshold=fused_gate_up_threshold,
)
if fused_qkv:
runtime_manifest["qkv_install"] = install_fp8_fused_qkv(
model,
threshold=fused_qkv_threshold,
)
object.__setattr__(model, "_mage_vl_runtime_manifest", runtime_manifest)
__all__ = [
"MageVLNVFP4Linear",
"MageVLScaledFP8Linear",
"apply_mage_vl_quantization",
]
|