| 674 | } |
| 675 | |
| 676 | void cgemv_4bit_inference_fp16( |
| 677 | int m, int n, int k, sycl::half* A, unsigned char* B, float* absmax, float* datatype, sycl::half* out, int lda, |
| 678 | int ldb, int ldc, int blocksize, sycl::queue* stream |
| 679 | ) { |
| 680 | gemv_4bit_inference_fp16(m, n, k, A, B, absmax, datatype, out, lda, ldb, ldc, blocksize, stream); |
| 681 | } |
| 682 | |
| 683 | void cgemv_4bit_inference_bf16( |
| 684 | int m, int n, int k, sycl::ext::oneapi::bfloat16* A, unsigned char* B, float* absmax, float* datatype, |
nothing calls this directly
no test coverage detected