diff --git a/src/gpu/compute/device_info.cpp b/src/gpu/compute/device_info.cpp index 02f3793488f..27623566d15 100644 --- a/src/gpu/compute/device_info.cpp +++ b/src/gpu/compute/device_info.cpp @@ -1,5 +1,5 @@ /******************************************************************************* -* Copyright 2020-2023 Intel Corporation +* Copyright 2020-2024 Intel Corporation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -114,8 +114,8 @@ int device_info_t::max_subgroup_size(gpu_arch_t gpu_arch) { } int device_info_t::max_exec_size(gpu_arch_t gpu_arch) { - switch (gpu_arch) { + case gpu::compute::gpu_arch_t::xe2: case gpu::compute::gpu_arch_t::xe_hpc: return 128; default: return 64; }