summaryrefslogtreecommitdiff
path: root/src/abstract_hardware_model.h
diff options
context:
space:
mode:
authorAndrew M. B. Boktor <[email protected]>2012-05-04 09:51:53 -0800
committerAndrew Boktor <[email protected]>2014-08-14 13:19:37 -0700
commit05f02e48963660d60120aca2f0198e0723e257d5 (patch)
treeca3a86afb038eb3d6bcaaee15a0fa587e19b881d /src/abstract_hardware_model.h
parent2893b0694e028d62e7b0849024b620a50a409de0 (diff)
Supporting the option for removing temporary files
. the option -gpgpu_ptx_save_converted_ptxplus allows keeping the ptxplus file . the option -gpgpu_keep allows keeping intermediate files used to communicate with other programs (e.g. cuobjdump) [git-p4: depot-paths = "//depot/gpgpu_sim_research/fermi/distribution/": change = 12304]
Diffstat (limited to 'src/abstract_hardware_model.h')
-rw-r--r--src/abstract_hardware_model.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/abstract_hardware_model.h b/src/abstract_hardware_model.h
index 28dc6cb..7a710f8 100644
--- a/src/abstract_hardware_model.h
+++ b/src/abstract_hardware_model.h
@@ -338,7 +338,6 @@ public:
unsigned get_forced_max_capability() const { return m_ptx_force_max_capability; }
bool convert_to_ptxplus() const { return m_ptx_convert_to_ptxplus; }
bool use_cuobjdump() const { return m_ptx_use_cuobjdump; }
- bool saved_converted_ptxplus() const { return m_ptx_save_converted_ptxplus; }
int get_ptx_inst_debug_to_file() const { return g_ptx_inst_debug_to_file; }
const char* get_ptx_inst_debug_file() const { return g_ptx_inst_debug_file; }
@@ -348,7 +347,6 @@ public:
private:
// PTX options
int m_ptx_convert_to_ptxplus;
- int m_ptx_save_converted_ptxplus;
int m_ptx_use_cuobjdump;
unsigned m_ptx_force_max_capability;