SWDEV-234295 - Dont clear device programs during amd::program::build()

Change-Id: I87bc7e2c830edee783ee490bbb087492467f2704
Этот коммит содержится в:
kjayapra-amd
2020-06-01 18:40:19 -04:00
коммит произвёл Karthik Jayaprakash
родитель 298dd2ff3f
Коммит e9bd41bf1a
2 изменённых файлов: 6 добавлений и 4 удалений
Обычный файл → Исполняемый файл
+5 -3
Просмотреть файл
@@ -469,7 +469,7 @@ void Program::StubProgramSource(const std::string& app_name) {
int32_t Program::build(const std::vector<Device*>& devices, const char* options,
void(CL_CALLBACK* notifyFptr)(cl_program, void*), void* data,
bool optionChangable) {
bool optionChangable, bool newDevProg) {
ScopedLock sl(buildLock_);
int32_t retval = CL_SUCCESS;
@@ -485,8 +485,10 @@ int32_t Program::build(const std::vector<Device*>& devices, const char* options,
StubProgramSource(devices[0]->appProfile()->appFileName());
}
// Clear the program object
clear();
if (newDevProg) {
// Clear the program object
clear();
}
// Process build options.
std::string cppstr(options ? options : "");