SWDEV-478881 - Fix log AMD_LOG file corruption
hiprtc and hip APIs use the same file. Append to file instead of start of file Change-Id: I2703f9bb67f0c51b557a058daab129679a0b5dd9
Этот коммит содержится в:
коммит произвёл
Ajay GunaShekar
родитель
d7b097c994
Коммит
e07172ff57
@@ -152,7 +152,7 @@ bool Flag::init() {
|
||||
if (!flagIsDefault(AMD_LOG_LEVEL_FILE)) {
|
||||
std::string fileName = AMD_LOG_LEVEL_FILE;
|
||||
fileName = fileName + "_" + std::to_string(Os::getProcessId());
|
||||
outFile = fopen(fileName.c_str(), "w");
|
||||
outFile = fopen(fileName.c_str(), "a");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Ссылка в новой задаче
Block a user