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

Этот коммит содержится в:
Siu Chi Chan
2017-10-18 16:26:13 -04:00
родитель 89ad18584d
Коммит a1956f64e6
+5
Просмотреть файл
@@ -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__)