aboutsummaryrefslogtreecommitdiff
path: root/src/cuda-sim/ptx_loader.h
diff options
context:
space:
mode:
authorMengchi Zhang <[email protected]>2019-07-09 10:06:31 -0400
committerMengchi Zhang <[email protected]>2019-07-09 10:06:31 -0400
commit6e051c42b8c9c820af50a10025d182a96fdd12a6 (patch)
tree0754375767d59181aacfa7936e1e5f9865c7df97 /src/cuda-sim/ptx_loader.h
parent61ce0709ba3c6b5563d75293cdb2ce489b5be585 (diff)
Move m_ptx_save_converted_ptxplus
Signed-off-by: Mengchi Zhang <[email protected]>
Diffstat (limited to 'src/cuda-sim/ptx_loader.h')
-rw-r--r--src/cuda-sim/ptx_loader.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cuda-sim/ptx_loader.h b/src/cuda-sim/ptx_loader.h
index aa3e2f3..decfdc8 100644
--- a/src/cuda-sim/ptx_loader.h
+++ b/src/cuda-sim/ptx_loader.h
@@ -43,14 +43,14 @@ class ptxinfo_data{
const char *g_ptxinfo_filename;
class gpgpu_context* gpgpu_ctx;
bool g_keep_intermediate_files;
+ bool m_ptx_save_converted_ptxplus;
void ptxinfo_addinfo();
bool keep_intermediate_files();
+ char* gpgpu_ptx_sim_convert_ptx_and_sass_to_ptxplus(const std::string ptx_str, const std::string sass_str, const std::string elf_str);
};
extern bool g_override_embedded_ptx;
extern int no_of_ptx; //counter to track number of ptx files to be extracted in an application.
-char* gpgpu_ptx_sim_convert_ptx_and_sass_to_ptxplus(const std::string ptx_str, const std::string sass_str, const std::string elf_str);
-
#endif