hipDeviceReset(): make sure to reinitialize the printf buffer in hcc RT

[ROCm/hip commit: ccef1cbd6e]
Cette révision appartient à :
Siu Chi Chan
2017-10-18 16:26:13 -04:00
Parent 9beedf8d54
révision 4dc24498af
+5
Voir le fichier
@@ -614,6 +614,11 @@ void ihipDevice_t::locked_reset()
_state = 0;
am_memtracker_reset(_acc);
//FIXME - Calling am_memtracker_reset is really bad since it destroyed all buffers allocated by the HCC runtime as well
//such as the printf buffer. Re-initialze the printf buffer as a workaround for now.
#if (__hcc_workweek__ >= 17423)
Kalmar::getContext()->initPrintfBuffer();
#endif
};
#define ErrorCheck(x) error_check(x, __LINE__, __FILE__)