|
1 | 1 | /*========================== begin_copyright_notice ============================ |
2 | 2 |
|
3 | | -Copyright (C) 2020-2024 Intel Corporation |
| 3 | +Copyright (C) 2020-2025 Intel Corporation |
4 | 4 |
|
5 | 5 | SPDX-License-Identifier: MIT |
6 | 6 |
|
@@ -47,7 +47,7 @@ struct zeInfoExecutionEnv |
47 | 47 | { |
48 | 48 | bool operator==(const zeInfoExecutionEnv& other) const |
49 | 49 | { |
50 | | - return barrier_count == other.barrier_count && disable_mid_thread_preemption == other.disable_mid_thread_preemption && grf_count == other.grf_count && has_4gb_buffers == other.has_4gb_buffers && has_device_enqueue == other.has_device_enqueue && has_dpas == other.has_dpas && has_fence_for_image_access == other.has_fence_for_image_access && has_global_atomics == other.has_global_atomics && has_multi_scratch_spaces == other.has_multi_scratch_spaces && has_no_stateless_write == other.has_no_stateless_write && has_stack_calls == other.has_stack_calls && require_disable_eufusion == other.require_disable_eufusion && indirect_stateless_count == other.indirect_stateless_count && inline_data_payload_size == other.inline_data_payload_size && offset_to_skip_per_thread_data_load == other.offset_to_skip_per_thread_data_load && offset_to_skip_set_ffid_gp == other.offset_to_skip_set_ffid_gp && required_sub_group_size == other.required_sub_group_size && required_work_group_size == other.required_work_group_size && simd_size == other.simd_size && slm_size == other.slm_size && private_size == other.private_size && spill_size == other.spill_size && subgroup_independent_forward_progress == other.subgroup_independent_forward_progress && thread_scheduling_mode == other.thread_scheduling_mode && work_group_walk_order_dimensions == other.work_group_walk_order_dimensions && eu_thread_count == other.eu_thread_count && has_sample == other.has_sample && has_rtcalls == other.has_rtcalls && generate_local_id == other.generate_local_id; |
| 50 | + return barrier_count == other.barrier_count && disable_mid_thread_preemption == other.disable_mid_thread_preemption && grf_count == other.grf_count && has_4gb_buffers == other.has_4gb_buffers && has_device_enqueue == other.has_device_enqueue && has_dpas == other.has_dpas && has_fence_for_image_access == other.has_fence_for_image_access && has_global_atomics == other.has_global_atomics && has_multi_scratch_spaces == other.has_multi_scratch_spaces && has_no_stateless_write == other.has_no_stateless_write && has_stack_calls == other.has_stack_calls && require_disable_eufusion == other.require_disable_eufusion && indirect_stateless_count == other.indirect_stateless_count && inline_data_payload_size == other.inline_data_payload_size && offset_to_skip_per_thread_data_load == other.offset_to_skip_per_thread_data_load && offset_to_skip_set_ffid_gp == other.offset_to_skip_set_ffid_gp && required_sub_group_size == other.required_sub_group_size && required_work_group_size == other.required_work_group_size && simd_size == other.simd_size && slm_size == other.slm_size && private_size == other.private_size && spill_size == other.spill_size && subgroup_independent_forward_progress == other.subgroup_independent_forward_progress && thread_scheduling_mode == other.thread_scheduling_mode && work_group_walk_order_dimensions == other.work_group_walk_order_dimensions && eu_thread_count == other.eu_thread_count && has_sample == other.has_sample && has_rtcalls == other.has_rtcalls && generate_local_id == other.generate_local_id && has_lsc_stores_with_non_default_l1_cache_controls == other.has_lsc_stores_with_non_default_l1_cache_controls; |
51 | 51 | } |
52 | 52 | zeinfo_int32_t barrier_count = 0; |
53 | 53 | zeinfo_bool_t disable_mid_thread_preemption = false; |
@@ -78,6 +78,7 @@ struct zeInfoExecutionEnv |
78 | 78 | zeinfo_bool_t has_sample = false; |
79 | 79 | zeinfo_bool_t has_rtcalls = false; |
80 | 80 | zeinfo_bool_t generate_local_id = false; |
| 81 | + zeinfo_bool_t has_lsc_stores_with_non_default_l1_cache_controls = false; |
81 | 82 | }; |
82 | 83 | struct zeInfoPayloadArgument |
83 | 84 | { |
@@ -291,7 +292,7 @@ struct zeInfoContainer |
291 | 292 | KernelsCostInfoTy kernels_cost_info; |
292 | 293 | }; |
293 | 294 | struct PreDefinedAttrGetter{ |
294 | | - static zeinfo_str_t getVersionNumber() { return "1.50"; } |
| 295 | + static zeinfo_str_t getVersionNumber() { return "1.52"; } |
295 | 296 |
|
296 | 297 | enum class ArgThreadSchedulingMode { |
297 | 298 | age_based, |
|
0 commit comments