Add hipdbPrintMem - wrapper for hcc memory tracker.

This commit is contained in:
Ben Sander
2017-07-03 15:05:30 -05:00
parent 40d0a203f8
commit 0459f3db72
3 changed files with 35 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
#include "hcc/hc_am.hpp"
void hipdbPrintMem(void *targetAddress)
{
hc::am_memtracker_print(targetAddress);
};