summaryrefslogtreecommitdiff
path: root/libcuda
diff options
context:
space:
mode:
authorspeverel <[email protected]>2016-05-12 14:45:11 -0700
committerspeverel <[email protected]>2016-05-12 14:45:11 -0700
commitb27f110d3ca92f7af869b298105ae014581367e9 (patch)
treeb694b6881d92f49d78c7ab674c45e83889f23fba /libcuda
parentc0ed7da45b3836cefc08c6072fd183d2b33bbdeb (diff)
Commented out line that checks for identifier in PTX file so that sim runs in 7.5
Diffstat (limited to 'libcuda')
-rw-r--r--libcuda/cuda_runtime_api.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libcuda/cuda_runtime_api.cc b/libcuda/cuda_runtime_api.cc
index eed4017..496d83c 100644
--- a/libcuda/cuda_runtime_api.cc
+++ b/libcuda/cuda_runtime_api.cc
@@ -1525,7 +1525,7 @@ cuobjdumpPTXSection* findPTXSectionInList(std::list<cuobjdumpSection*> sectionli
){
cuobjdumpPTXSection* ptxsection;
if((ptxsection=dynamic_cast<cuobjdumpPTXSection*>(*iter)) != NULL){
- if(ptxsection->getIdentifier() == identifier)
+ //if(ptxsection->getIdentifier() == identifier)
return ptxsection;
}
}