mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-28 16:48:45 +08:00
feature: Parse actual_kernel_start_offset zeinfo entry
This is a deprecated and redundant entry but needs to be preserved for compatibility reasons. Related-To: GSD-10402 Signed-off-by: Chodor, Jaroslaw <jaroslaw.chodor@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
66ca278ddf
commit
49e904df74
@@ -60,6 +60,7 @@ inline constexpr ConstStringRef subgroupIndependentForwardProgress("subgroup_ind
|
||||
inline constexpr ConstStringRef workGroupWalkOrderDimensions("work_group_walk_order_dimensions");
|
||||
inline constexpr ConstStringRef threadSchedulingMode("thread_scheduling_mode");
|
||||
inline constexpr ConstStringRef hasSample("has_sample");
|
||||
inline constexpr ConstStringRef actualKernelStartOffset("actual_kernel_start_offset");
|
||||
namespace ThreadSchedulingMode {
|
||||
inline constexpr ConstStringRef ageBased("age_based");
|
||||
inline constexpr ConstStringRef roundRobin("round_robin");
|
||||
|
||||
@@ -673,6 +673,8 @@ DecodeError readZeInfoExecutionEnvironment(const Yaml::YamlParser &parser, const
|
||||
validExecEnv &= readZeInfoValueChecked(parser, execEnvMetadataNd, outExecEnv.privateSize, context, outErrReason);
|
||||
} else if (Tags::Kernel::ExecutionEnv::spillSize == key) {
|
||||
validExecEnv &= readZeInfoValueChecked(parser, execEnvMetadataNd, outExecEnv.spillSize, context, outErrReason);
|
||||
} else if (Tags::Kernel::ExecutionEnv::actualKernelStartOffset == key) {
|
||||
// ignore intentionally - deprecated and redundant key
|
||||
} else {
|
||||
readZeInfoValueCheckedExtra(parser, execEnvMetadataNd, outExecEnv, context, key, outErrReason, outWarning, validExecEnv, err);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user