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
Этот коммит содержится в:
@@ -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()
|
||||
{
|
||||
|
||||
Ссылка в новой задаче
Block a user