SWDEV-333471 - Remove HIP_FORCE_QUEUE_PROFILING

HIP_FORCE_QUEUE_PROFILING has been replaced by GPU_FORCE_QUEUE_PROFILING.

Change-Id: Ic8dec4407ef79c27094cb3954e48869075b4732f
Este commit está contenido en:
Jason Tang
2022-08-23 18:47:24 -04:00
cometido por Jason Tang
padre 0d6e8e378e
commit 97741fe5d4
Se han modificado 2 ficheros con 2 adiciones y 2 borrados
+1 -1
Ver fichero
@@ -690,7 +690,7 @@ hipError_t hipGraphExec::CreateQueues(size_t numQueues) {
for (size_t i = 0; i < numQueues; i++) {
amd::HostQueue* queue;
cl_command_queue_properties properties =
(callbacks_table.is_enabled() || HIP_FORCE_QUEUE_PROFILING) ? CL_QUEUE_PROFILING_ENABLE : 0;
callbacks_table.is_enabled() ? CL_QUEUE_PROFILING_ENABLE : 0;
queue = new amd::HostQueue(*hip::getCurrentDevice()->asContext(),
*hip::getCurrentDevice()->devices()[0], properties,
amd::CommandQueue::RealTimeDisabled, amd::CommandQueue::Priority::Normal);
+1 -1
Ver fichero
@@ -81,7 +81,7 @@ bool Stream::Create() {
// or if we force it with env var. This would enable time stamp collection for every
// command submitted to the stream(queue).
bool isProfilerAttached = callbacks_table.is_enabled();
cl_command_queue_properties properties = (isProfilerAttached || HIP_FORCE_QUEUE_PROFILING) ?
cl_command_queue_properties properties = isProfilerAttached ?
CL_QUEUE_PROFILING_ENABLE : 0;
amd::CommandQueue::Priority p;
switch (priority_) {