P4 to Git Change 1158054 by gandryey@gera-dev-w7 on 2015/06/04 17:53:55

ECR #304775 - Fix for a memory "leak" in one GEHC sample
	- The app builds a dependency graph when the new command waits for the previous one. Our runtime couldn't release wait commands in this situation, because release is done in the command destructor. Release the events from the wait list when the command is done.

Affected files ...

... //depot/stg/opencl/drivers/opencl/runtime/platform/command.cpp#71 edit
Этот коммит содержится в:
foreman
2015-06-04 18:06:46 -04:00
родитель 51d7e63f11
Коммит e0b2a44b3f
+5 -6
Просмотреть файл
@@ -218,6 +218,11 @@ Command::Command(
}
Command::~Command()
{
}
void
Command::releaseResources()
{
const Command::EventWaitList& events = eventWaitList();
@@ -228,12 +233,6 @@ Command::~Command()
std::mem_fun(&Command::release));
}
void
Command::releaseResources()
{
}
void
Command::enqueue()
{