diff options
| author | Jin Wang <[email protected]> | 2014-09-25 16:15:09 -0400 |
|---|---|---|
| committer | Jin Wang <[email protected]> | 2016-07-05 08:24:35 -0400 |
| commit | fabf1747e3f798c76ddc9c5fae26a8d4d3cdedec (patch) | |
| tree | 09ab1a0f0f80f236a6987357b38b27163c272b7b /libcuda/cuda_runtime_api.cc | |
| parent | f9e25fed4a9f471525debd61300baab6ccdbe9d6 (diff) | |
MOD: add support for cuda65 ptx header
Diffstat (limited to 'libcuda/cuda_runtime_api.cc')
| -rw-r--r-- | libcuda/cuda_runtime_api.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libcuda/cuda_runtime_api.cc b/libcuda/cuda_runtime_api.cc index 910bebd..e7a534e 100644 --- a/libcuda/cuda_runtime_api.cc +++ b/libcuda/cuda_runtime_api.cc @@ -1519,7 +1519,7 @@ cuobjdumpELFSection* findELFSection(const std::string identifier){ if (sec!=NULL)return sec; sec = findELFSectionInList(libSectionList, identifier); if (sec!=NULL)return sec; - std::cout << "Cound not find " << identifier << std::endl; + std::cout << "Could not find " << identifier << std::endl; assert(0 && "Could not find the required ELF section"); return NULL; } @@ -1546,7 +1546,7 @@ cuobjdumpPTXSection* findPTXSection(const std::string identifier){ if (sec!=NULL)return sec; sec = findPTXSectionInList(libSectionList, identifier); if (sec!=NULL)return sec; - std::cout << "Cound not find " << identifier << std::endl; + std::cout << "Could not find " << identifier << std::endl; assert(0 && "Could not find the required PTX section"); return NULL; } |
