summaryrefslogtreecommitdiff
path: root/debug_tools/WatchYourStep/ptxjitplus/ptxinst.cpp
diff options
context:
space:
mode:
authorJonathan <[email protected]>2018-06-26 13:20:39 -0700
committerJonathan <[email protected]>2018-06-26 13:20:39 -0700
commit584ebaa74a838680e6ed1fa13ac266e88c30c071 (patch)
tree59523a4db9b6b4923611777928818d0bfc8b0ffc /debug_tools/WatchYourStep/ptxjitplus/ptxinst.cpp
parent978730086509050df16b77b9fbb4cc3ef19f3f6a (diff)
exports and imports param data in new debug tool: WatchYourStep
Diffstat (limited to 'debug_tools/WatchYourStep/ptxjitplus/ptxinst.cpp')
-rw-r--r--debug_tools/WatchYourStep/ptxjitplus/ptxinst.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/debug_tools/WatchYourStep/ptxjitplus/ptxinst.cpp b/debug_tools/WatchYourStep/ptxjitplus/ptxinst.cpp
new file mode 100644
index 0000000..6b39eb1
--- /dev/null
+++ b/debug_tools/WatchYourStep/ptxjitplus/ptxinst.cpp
@@ -0,0 +1,14 @@
+/* ptxinst.cpp
+ * Jonathan Lew
+ * University of British Columbia
+ */
+#include "ptxinst.h"
+
+void* instrument_ptx_from_function(std::string function, std::string path)
+{
+ return NULL;
+}
+void* instrument_ptx_from_string(std::string ptxcode)
+{
+ return NULL;
+}