Skip to content

Commit

Permalink
SYCL: Use get_multi_ptr instead of deprecated get_pointer in wkv6 (#1…
Browse files Browse the repository at this point in the history
…1087)

* SYCL: Use get_multi_ptr instead of deprecated get_pointer in wkv6

* Revert "SYCL: Use get_multi_ptr instead of deprecated get_pointer in wkv6"

This reverts commit f62dc45.

* Reland: Use get_multi_ptr instead of deprecated get_pointer in wkv6
  • Loading branch information
qnixsynapse authored Jan 7, 2025
1 parent dc7cef9 commit c0d6f79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ggml/src/ggml-sycl/wkv6.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ void ggml_sycl_op_rwkv_wkv6(ggml_backend_sycl_context& ctx, const ggml_tensor* s
[=](sycl::nd_item<3> item_ct1) {
rwkv_wkv_f32_kernel(
B, T, C, H, k_d, v_d, r_d, tf_d, td_d, s_d, dst_d,
item_ct1, shared_mem_acc.get_pointer()
item_ct1, (float*)shared_mem_acc.get_multi_ptr<sycl::access::decorated::no>().get()
);
});
});
Expand Down

0 comments on commit c0d6f79

Please sign in to comment.