下载
中文
注册

torch_npu.npu_dynamic_quant

功能描述

  • 算子功能:对输入张量进行pre-token对称动态量化。
  • 计算公式:
    • 如果smooth_scales不存在:

    • 如果smooth_scales存在:

      如果是MOE(混合专家模型)场景,此时会引入group_index输入,smooth_scales中包含多组smooth向量,按group_index中的数值作用到x的不同行上。具体的,假如x包含m个token,smooth_scales有n行,smooth_scales[0]会作用到x[0:group_index[0]]上,smooth_scales[i]会作用到x[group_index[i-1]: group_index[i]]上,i=1,2,...,n-1。

接口原型

1
torch_npu.npu_dynamic_quant(Tensor x, *, Tensor? smooth_scales=None, Tensor? group_index=None, ScalarType? dst_type=None) ->(Tensor, Tensor)

参数说明

  • x:Device侧的Tensor类型,需要进行量化的源数据张量,必选输入,数据类型支持FLOAT16、BFLOAT16,数据格式支持ND,支持非连续的Tensor。输入x的维度必须大于1。进行INT4量化时,要求x形状的最后一维是8的整数倍。
  • smooth_scales:Device侧的Tensor类型,对x进行scales的张量,可选输入,数据类型支持FLOAT16、BFLOAT16,数据格式支持ND,支持非连续的Tensor。
  • group_index:Device侧的Tensor类型,在MOE场景下,对smooth_scales进行分组的下标,可选输入,数据类型支持INT32,数据格式支持ND,支持非连续的Tensor。
  • dst_type:ScalarType类型,用于选择进行INT8/INT4量化,可选输入,输入值只能是torch.int8和torch.quint4x2,默认为INT8量化。

输出说明

该接口包含两个输出,依次是y、scale:

  • y:量化后的输出Tensor,在进行INT8量化时,y的数据类型为INT8,形状与x一致;在进行INT4量化时,y的数据类型为INT32,形状最后一维为x最后一维除以8,其余维度与x一致,每个INT32元素包含8个INT4结果。
  • scale:非对称动态量化过程中计算出的缩放系数Tensor,数据类型为FLOAT32,形状为x的形状剔除最后一维。

约束说明

  • 该接口仅在推理场景下使用。
  • 该接口支持图模式(目前仅支持PyTorch 2.1版本)。
  • 输入smooth_scales、group_index、dst_type必须是关键字传参,即调用接口时需要显式地写smooth_scales=xxx
  • 使用smooth_scales时:
    • 若不使用group_index,smooth_scales必须是一维Tensor,元素数量与x的最后一维大小一致。
    • 若使用group_index,smooth_scales必须是二维Tensor,第二维元素数量与x的最后一维大小一致,group_index必须是一维数组,元素数量与smooth_scales第一维一致。group_index中的元素必须是单调递增的,其最后一个元素的值,应等于x的元素数量除以x的最后一个维度。

支持的型号

  • Atlas A2 训练系列产品/Atlas 800I A2 推理产品
  • Atlas A3 训练系列产品

调用示例

  • 单算子模式调用
    • 只有一个输入x
      1
      2
      3
      4
      5
      6
      7
      import torch
      import torch_npu
       
      x = torch.rand((3, 3), dtype = torch.float16).to("npu")
      output, scale = torch_npu.npu_dynamic_quant(x)
      print(output)
      print(scale)
      
    • 使用smooth_scales输入
      1
      2
      3
      4
      5
      6
      7
      8
      # import torch
      import torch_npu
       
      x = torch.rand((3, 3), dtype = torch.float16).to("npu")
      smooth_scales = torch.rand((3,), dtype = torch.float16).to("npu")
      output, scale = torch_npu.npu_dynamic_quant(x, smooth_scales=smooth_scales)
      print(output)
      print(scale)
      
  • 图模式调用
     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
    import torch
    import torch_npu
    import torchair as tng
    from torchair.configs.compiler_config import CompilerConfig
    torch_npu.npu.set_compile_mode(jit_compile=True)
    config = CompilerConfig()
    npu_backend = tng.get_npu_backend(compiler_config=config)
    
    device=torch.device(f'npu:4')
    
    torch_npu.npu.set_device(device)
    
    class DynamicQuantModel(torch.nn.Module):
        def __init__(self):
            super().__init__()
    
        def forward(self, input_tensor, smooth_scales=None, group_index=None, dst_type=None):
            out, scale = torch_npu.npu_dynamic_quant(input_tensor, smooth_scales=smooth_scales, group_index=group_index, dst_type=dst_type)
            return out, scale
    
    x = torch.randn((2, 4, 6),device='npu',dtype=torch.float16).npu()
    smooth_scales = torch.randn((6),device='npu',dtype=torch.float16).npu()
    dynamic_quant_model = DynamicQuantModel().npu()
    dynamic_quant_model = torch.compile(dynamic_quant_model, backend=npu_backend, dynamic=True)
    out, scale = dynamic_quant_model(x, smooth_scales=smooth_scales)
    print(out)
    print(scale)