作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是张量量化的新手,并尝试做一些简单的事情
import torch
x = torch.rand(10, 3)
y = torch.rand(10, 3)
x@y.T
使用在 CPU 上运行的 PyTorch 量化张量。我因此尝试
scale, zero_point = 1e-4, 2
dtype = torch.qint32
qx = torch.quantize_per_tensor(x, scale, zero_point, dtype)
qy = torch.quantize_per_tensor(y, scale, zero_point, dtype)
qx@qy.T # I tried...
..并得到了错误
RuntimeError: Could not run 'aten::mm' with arguments from the'QuantizedCPUTensorId' backend. 'aten::mm' is only available for thesebackends: [CUDATensorId, SparseCPUTensorId, VariableTensorId,CPUTensorId, SparseCUDATensorId].
最佳答案
为量化矩阵实现矩阵乘法并不简单。因此,“常规”矩阵乘法( @
)不支持它(正如您的错误消息所暗示的那样)。
您应该查看量化操作,例如 torch.nn.quantized.functional.linear
:
torch.nn.quantized.functional.linear(qx[None,...], qy.T)
关于pytorch - 如何将两个 PyTorch 量化张量矩阵相乘?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60325913/
我是一名优秀的程序员,十分优秀!