AMD: set weights and scaling numbers properly for block FP8 (#2637)

This commit is contained in:
HAI
2024-12-29 03:23:39 -08:00
committed by GitHub
parent e0e09fceeb
commit 30828e7192
3 changed files with 56 additions and 6 deletions

View File

@@ -22,7 +22,10 @@ import torch
import triton
import triton.language as tl
from sglang.srt.utils import get_device_name
from sglang.srt.utils import get_device_name, is_hip
is_hip_ = is_hip()
fp8_type_ = torch.float8_e4m3fnuz if is_hip_ else torch.float8_e4m3fn
logger = logging.getLogger(__name__)
@@ -73,7 +76,7 @@ def per_token_group_quant_fp8(
x: torch.Tensor,
group_size: int,
eps: float = 1e-10,
dtype: torch.dtype = torch.float8_e4m3fn,
dtype: torch.dtype = fp8_type_,
) -> Tuple[torch.Tensor, torch.Tensor]:
"""Function to perform per-token-group quantization on an input tensor `x`.
@@ -95,9 +98,13 @@ def per_token_group_quant_fp8(
assert x.is_contiguous(), "`x` is not contiguous"
finfo = torch.finfo(dtype)
fp8_min = finfo.min
fp8_max = finfo.max
if is_hip_:
fp8_max = 224.0
fp8_min = -fp8_max
x_q = torch.empty_like(x, device=x.device, dtype=dtype)
M = x.numel() // group_size
N = group_size