mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-30 09:58:55 +08:00
Fix SchedulerGWS debug print
- GWS size was not printed Change-Id: I80347e91cc53f8cb220172e69e1a67404894149f
This commit is contained in:
committed by
sys_ocldev
parent
a3ceaf8dd4
commit
bf10858f59
@@ -8,6 +8,8 @@
|
||||
#include "runtime/helpers/hw_helper.h"
|
||||
#include "runtime/scheduler/scheduler_kernel.h"
|
||||
|
||||
#include <cinttypes>
|
||||
|
||||
namespace OCLRT {
|
||||
|
||||
void SchedulerKernel::setArgs(GraphicsAllocation *queue,
|
||||
@@ -56,6 +58,6 @@ void SchedulerKernel::computeGws() {
|
||||
}
|
||||
|
||||
DBG_LOG(PrintEMDebugInformation, "Scheduler GWS: ", gws);
|
||||
printDebugString(DebugManager.flags.PrintDebugMessages.get(), stderr, "Scheduler GWS: ", gws);
|
||||
printDebugString(DebugManager.flags.PrintDebugMessages.get(), stderr, "Scheduler GWS: %" PRIu64, static_cast<uint64_t>(gws));
|
||||
}
|
||||
} // namespace OCLRT
|
||||
|
||||
Reference in New Issue
Block a user