mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-25 13:33:02 +08:00
fix: add missing new line character in print log
Signed-off-by: Zbigniew Zdanowicz <zbigniew.zdanowicz@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
cf8b5480a0
commit
3e1d276233
@@ -683,7 +683,7 @@ ze_result_t KernelImp::setArgBuffer(uint32_t argIndex, size_t argSize, const voi
|
||||
NEO::SvmAllocationData *allocData = nullptr;
|
||||
if (argVal != nullptr) {
|
||||
const auto requestedAddress = *reinterpret_cast<void *const *>(argVal);
|
||||
PRINT_DEBUG_STRING(NEO::debugManager.flags.PrintL0SetKernelArg.get(), stderr, "set arg buffer index : %u requested address : %p", argIndex, requestedAddress);
|
||||
PRINT_DEBUG_STRING(NEO::debugManager.flags.PrintL0SetKernelArg.get(), stderr, "set arg buffer index : %u requested address : %p\n", argIndex, requestedAddress);
|
||||
if (argInfo.allocId > 0 &&
|
||||
argInfo.allocId < NEO::SvmAllocationData::uninitializedAllocId &&
|
||||
requestedAddress == argInfo.value) {
|
||||
|
||||
Reference in New Issue
Block a user