Skip to content

Commit 75a3266

Browse files
committed
fix error
1 parent 9d73802 commit 75a3266

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ggml/src/ggml-sycl/norm.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ static void norm_f32_sycl(const float* x, float* dst, const int ncols,
228228

229229
static void group_norm_f32_sycl(const float* x, float* dst,
230230
const int num_groups, const float eps, const int group_size,
231-
const int ne_elements, queue_ptr stream, int device) {
231+
const int ne_elements, queue_ptr stream, int device_id) {
232232
if (group_size < 1024) {
233233
const sycl::range<3> block_dims(1, 1, WARP_SIZE);
234234
stream->submit([&](sycl::handler& cgh) {

0 commit comments

Comments
 (0)