diff options
| author | Tor Aamodt <[email protected]> | 2010-07-20 01:08:56 -0800 |
|---|---|---|
| committer | Tor Aamodt <[email protected]> | 2010-07-20 01:08:56 -0800 |
| commit | a884b505457d48dcd2783563d407e14a607456ee (patch) | |
| tree | 4e50efd26376e2dce8c96a8b21bd57f88c74e23f /libopencl/opencl_runtime_api.cc | |
| parent | 55106068e9087f253bbeb587a763055620e59441 (diff) | |
- adding CL_DEVICE_SINGLE_FP_CONFIG (need to get info on what it should be set to)
- bug fix for shader_core object allocation/initialization
- bug fix for ret instruction w/ OpenCL + new PTX ABI
- some formatting of output
[git-p4: depot-paths = "//depot/gpgpu_sim_research/fermi/distribution/": change = 6910]
Diffstat (limited to 'libopencl/opencl_runtime_api.cc')
| -rw-r--r-- | libopencl/opencl_runtime_api.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libopencl/opencl_runtime_api.cc b/libopencl/opencl_runtime_api.cc index d49cc6e..c5297a3 100644 --- a/libopencl/opencl_runtime_api.cc +++ b/libopencl/opencl_runtime_api.cc @@ -1064,6 +1064,7 @@ clGetDeviceInfo(cl_device_id device, case CL_DEVICE_PREFERRED_VECTOR_WIDTH_LONG: CL_INT_CASE(1); break; case CL_DEVICE_PREFERRED_VECTOR_WIDTH_FLOAT: CL_INT_CASE(1); break; case CL_DEVICE_PREFERRED_VECTOR_WIDTH_DOUBLE: CL_INT_CASE(0); break; + case CL_DEVICE_SINGLE_FP_CONFIG: CL_INT_CASE(0); break; default: opencl_not_implemented(__my_func__,__LINE__); } |
