diff options
| author | Tim Rogers <[email protected]> | 2018-10-05 13:42:03 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2018-10-05 13:42:03 -0400 |
| commit | 77a18471d485b2a5bad8cf140185d41fd9d35055 (patch) | |
| tree | 70c9ab71a18695fe1b6c23b9665a664c9328ce86 /libopencl/opencl_runtime_api.cc | |
| parent | 2f2345eef7e40e2fcd0cf5558adfa0fd4ff728d1 (diff) | |
| parent | 6ac985565bf5cb6d621487cc4d13163f63d5b646 (diff) | |
Merge pull request #76 from tgrogers/dev
Changes to allow correct occupancy with newer cards, while still running PTXPlus
Diffstat (limited to 'libopencl/opencl_runtime_api.cc')
| -rw-r--r-- | libopencl/opencl_runtime_api.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libopencl/opencl_runtime_api.cc b/libopencl/opencl_runtime_api.cc index 63f7c81..97a54d8 100644 --- a/libopencl/opencl_runtime_api.cc +++ b/libopencl/opencl_runtime_api.cc @@ -577,7 +577,7 @@ void _cl_program::Build(const char *options) } info.m_asm = tmp; info.m_symtab = gpgpu_ptx_sim_load_ptx_from_string( tmp, source_num ); - gpgpu_ptxinfo_load_from_string( tmp, source_num); + gpgpu_ptxinfo_load_from_string( tmp, source_num ); free(tmp); } printf("GPGPU-Sim OpenCL API: finished compiling OpenCL kernels.\n"); |
