Skip to content

Commit 17b8a2e

Browse files
committed
sycl : Fixes RWKV6 broken build in the cuda backend
1 parent 54ef9cf commit 17b8a2e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ggml/src/ggml-sycl/outprod.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#include <sycl/sycl.hpp>
2+
#include <oneapi/mkl.hpp>
23
#include "outprod.hpp"
34

45

@@ -39,7 +40,7 @@ void ggml_sycl_op_out_prod(ggml_backend_sycl_context& ctx, const ggml_tensor* sr
3940

4041
try {
4142
// Perform matrix multiplication using oneMKL GEMM
42-
oneapi::mkl::blas::gemm(*stream,
43+
oneapi::mkl::blas::column_major::gemm(*stream,
4344
oneapi::mkl::transpose::nontrans, src1_op,
4445
ne0, ne1, ne01,
4546
alpha,

0 commit comments

Comments
 (0)