Skip to content

Commit

Permalink
cuda : fix convert function (#1412)
Browse files Browse the repository at this point in the history
  • Loading branch information
ggerganov committed May 13, 2023
1 parent bda4d7c commit 08737ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ggml-cuda.cu
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ static dequantize_mul_mat_vec_cuda_t ggml_get_dequantize_mul_mat_vec_cuda(ggml_t
case GGML_TYPE_Q8_0:
return dequantize_mul_mat_vec_q8_0_cuda;
case GGML_TYPE_F16:
return dequantize_mul_mat_vec_q8_0_cuda;
return convert_mul_mat_vec_f16_cuda;
default:
return nullptr;
}
Expand Down

0 comments on commit 08737ef

Please sign in to comment.