Fix dequant global buffer dtype reuse across mixed precision
This commit is contained in:
parent
cee01cb7ae
commit
631b36db15
1 changed files with 2 additions and 2 deletions
|
|
@ -388,7 +388,7 @@ if DEVICE_TYPE == "xpu" and HAS_XPU_STREAM:
|
|||
global ABSMAX_BUFFERS
|
||||
WEIGHT_BUFFER = WEIGHT_BUFFERS[device_index]
|
||||
ABSMAX_BUFFER = ABSMAX_BUFFERS[device_index]
|
||||
if WEIGHT_BUFFER is None:
|
||||
if WEIGHT_BUFFER is None or WEIGHT_BUFFER.dtype != dtype:
|
||||
WEIGHT_BUFFERS[device_index] = WEIGHT_BUFFER = torch_empty(
|
||||
size, dtype = dtype, device = device, requires_grad = False
|
||||
)
|
||||
|
|
@ -498,7 +498,7 @@ elif DEVICE_TYPE in ("cuda", "hip") and HAS_CUDA_STREAM:
|
|||
global ABSMAX_BUFFERS
|
||||
WEIGHT_BUFFER = WEIGHT_BUFFERS[device_index]
|
||||
ABSMAX_BUFFER = ABSMAX_BUFFERS[device_index]
|
||||
if WEIGHT_BUFFER is None:
|
||||
if WEIGHT_BUFFER is None or WEIGHT_BUFFER.dtype != dtype:
|
||||
WEIGHT_BUFFERS[device_index] = WEIGHT_BUFFER = torch_empty(
|
||||
size, dtype = dtype, device = device, requires_grad = False
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue