"tests/vscode:/vscode.git/clone" did not exist on "4851c202bbfb5dadc5a3b3b4409d3f083f4e8e90"
Commit 993c31c3 authored by zhuwenwen's avatar zhuwenwen
Browse files

update dispatch_unquantized_gemm

parent 4b51e6f1
...@@ -188,7 +188,8 @@ def cpu_unquantized_gemm(layer: torch.nn.Module, ...@@ -188,7 +188,8 @@ def cpu_unquantized_gemm(layer: torch.nn.Module,
def dispatch_unquantized_gemm() -> Callable[..., torch.Tensor]: def dispatch_unquantized_gemm() -> Callable[..., torch.Tensor]:
if current_platform.is_rocm(): if current_platform.is_rocm():
return rocm_unquantized_gemm # return rocm_unquantized_gemm
return default_unquantized_gemm
elif current_platform.is_cpu(): elif current_platform.is_cpu():
return cpu_unquantized_gemm return cpu_unquantized_gemm
else: else:
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment