summaryrefslogtreecommitdiff
path: root/debug_tools/WatchYourStep/ptxjitplus/ptxinst.h
blob: de2595ef625000a8c2788c5ab7d5ffa7a52cd8bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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