summaryrefslogtreecommitdiff
path: root/src/cuda-sim
diff options
context:
space:
mode:
authorJonathan <[email protected]>2018-05-22 09:56:07 -0700
committerJonathan <[email protected]>2018-05-25 09:11:55 -0700
commit4a567a94aca58fdd2298b50ae9e9da3a889e2173 (patch)
treea410fb586777e098348d7340b3a303b5047f692e /src/cuda-sim
parent958e430266cb3de73033a7e0aab6e7c697fdc6bc (diff)
unbind implementation
Diffstat (limited to 'src/cuda-sim')
-rw-r--r--src/cuda-sim/cuda-sim.cc6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/cuda-sim/cuda-sim.cc b/src/cuda-sim/cuda-sim.cc
index 946043a..6125422 100644
--- a/src/cuda-sim/cuda-sim.cc
+++ b/src/cuda-sim/cuda-sim.cc
@@ -183,6 +183,12 @@ void gpgpu_t::gpgpu_ptx_sim_bindTextureToArray(const struct textureReference* te
m_TextureRefToTexureInfo[texref] = texInfo;
}
+void gpgpu_t::gpgpu_ptx_sim_unbindTexture(const struct textureReference* texref)
+{
+ m_TextureRefToCudaArray.erase(texref);
+ m_TextureRefToTexureInfo.erase(texref);
+}
+
unsigned g_assemble_code_next_pc=0;
std::map<unsigned,function_info*> g_pc_to_finfo;
std::vector<ptx_instruction*> function_info::s_g_pc_to_insn;