refactor: add getter to read kernel argument values

Signed-off-by: Zbigniew Zdanowicz <zbigniew.zdanowicz@intel.com>
This commit is contained in:
Zbigniew Zdanowicz
2025-01-30 15:03:42 +00:00
committed by Compute-Runtime-Automation
parent f91cde2a5b
commit 4c47364dfd
2 changed files with 11 additions and 0 deletions

View File

@@ -233,6 +233,10 @@ struct KernelImp : Kernel {
}
uint8_t getRequiredSlmAlignment(uint32_t argIndex) const;
const std::vector<KernelArgInfo> &getKernelArgInfos() const {
return kernelArgInfos;
}
protected:
KernelImp() = default;