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

[ROCm/clr commit: a1956f64e6]
This commit is contained in:
Siu Chi Chan
2017-10-18 16:26:13 -04:00
parent 7a9f645795
commit 5ccf3d4d9b
+5
Vedi File
@@ -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__)