1 2 3 4 5 6 7 8 9 10 11 12 13 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; }