summaryrefslogtreecommitdiff
path: root/debug_tools/WatchYourStep/ptxjitplus/ptxinst.h
diff options
context:
space:
mode:
Diffstat (limited to 'debug_tools/WatchYourStep/ptxjitplus/ptxinst.h')
-rw-r--r--debug_tools/WatchYourStep/ptxjitplus/ptxinst.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/debug_tools/WatchYourStep/ptxjitplus/ptxinst.h b/debug_tools/WatchYourStep/ptxjitplus/ptxinst.h
new file mode 100644
index 0000000..de2595e
--- /dev/null
+++ b/debug_tools/WatchYourStep/ptxjitplus/ptxinst.h
@@ -0,0 +1,14 @@
+/* ptxinst.h
+ * Jonathan Lew
+ * University of British Columbia
+ */
+
+#ifndef _PTXINST_H_
+#define _PTXINST_H_
+
+#include <string>
+
+void* instrument_ptx_from_function(std::string function, std::string path);
+void* instrument_ptx_from_string(std::string ptxcode);
+
+#endif