Skip to content

Commit 7b63a71

Browse files
authored
Fix conditional enabling following arch checks for ggml-sycl (#14504)
Signed-off-by: nscipione <[email protected]>
1 parent 0c2ee38 commit 7b63a71

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ static ggml_sycl_device_info ggml_sycl_init() {
8383

8484
info.devices[i].cc =
8585
100 * prop.get_major_version() + 10 * prop.get_minor_version();
86-
info.devices[i].opt_feature.reorder = !device.ext_oneapi_architecture_is(syclex::arch_category::intel_gpu);
86+
info.devices[i].opt_feature.reorder = device.ext_oneapi_architecture_is(syclex::arch_category::intel_gpu);
8787
info.max_work_group_sizes[i] = prop.get_max_work_group_size();
8888
}
8989

0 commit comments

Comments
 (0)