mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-30 01:35:20 +08:00
fix: use required walk order
Signed-off-by: Maciej Plewka <maciej.plewka@intel.com> Related-To: NEO-10014
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
9309d7d865
commit
b348eaf29f
@@ -786,8 +786,9 @@ void populateKernelSourceAttributes(NEO::KernelDescriptor &dst, const KernelAttr
|
||||
appendAttributeIfSet(languageAttributes, AttributeTags::workgroupSizeHint, attributes.workgroupSizeHint);
|
||||
appendAttributeIfSet(languageAttributes, AttributeTags::vecTypeHint, attributes.vecTypeHint);
|
||||
appendAttributeIfSet(languageAttributes, AttributeTags::invalidKernel, attributes.invalidKernel);
|
||||
dst.kernelAttributes.flags.isInvalid = attributes.invalidKernel.has_value();
|
||||
|
||||
dst.kernelAttributes.flags.isInvalid = attributes.invalidKernel.has_value();
|
||||
dst.kernelAttributes.flags.requiresWorkgroupWalkOrder = attributes.intelReqdWorkgroupWalkOrder.has_value();
|
||||
dst.kernelMetadata.requiredSubGroupSize = static_cast<uint8_t>(attributes.intelReqdSubgroupSize.value_or(0U));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user