Skip to content

Commit 0f77aae

Browse files
authored
sycl : offload of get_rows set to 0 (#10432)
1 parent 266b851 commit 0f77aae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ggml/src/ggml-sycl/ggml-sycl.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -4493,7 +4493,7 @@ static bool ggml_backend_sycl_device_supports_buft(ggml_backend_dev_t dev, ggml_
44934493
static int64_t get_op_batch_size(const ggml_tensor * op) {
44944494
switch (op->op) {
44954495
case GGML_OP_GET_ROWS:
4496-
return op->ne[1]; // this will increse the speed of prefill in test
4496+
return 0;
44974497
case GGML_OP_MUL_MAT:
44984498
return op->ne[1];
44994499
case GGML_OP_MUL_MAT_ID:

0 commit comments

Comments
 (0)