diff options
author | Zhigang Gong <zhigang.gong@intel.com> | 2014-09-11 15:04:44 +0800 |
---|---|---|
committer | Zhigang Gong <zhigang.gong@intel.com> | 2014-09-11 15:48:31 +0800 |
commit | f9bd844e3deac859ec9d7db823eb9f2ecb2bf4cf (patch) | |
tree | bb1cdc4eace2b20b4094cea599ceda916f0dd995 | |
parent | 80b6261648a4c86da4a3b9d95dee95d509c35e10 (diff) |
GBE: don't enable double by default.
Actually, we don't support double completely currently.
Let's disable it now. This bring a little incompatible point with the 1.2 spec
which doesn't require the kernel to use the following pragma to enable fp64.
#pragma OPENCL EXTENSION cl_khr_fp64 : enable
If the application wants to try the partially supported double with beignet
under opencl 1.2, the application will still need to add the above pragma.
Signed-off-by: Zhigang Gong <zhigang.gong@intel.com>
Reviewed-by: "Yang, Rong R" <rong.r.yang@intel.com>
-rw-r--r-- | backend/src/backend/program.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/backend/src/backend/program.cpp b/backend/src/backend/program.cpp index 06c22ac8..be83108c 100644 --- a/backend/src/backend/program.cpp +++ b/backend/src/backend/program.cpp @@ -723,10 +723,14 @@ namespace gbe { FILE *clFile = fdopen(clFd, "w"); FATAL_IF(clFile == NULL, "Failed to open temporary file"); - + // XXX enable cl_khr_fp64 may cause some potential bugs. + // we may need to revisit here latter when we want to support fp64 completely. + // For now, as we don't support fp64 actually, just disable it by default. +#if 0 #define ENABLE_CL_KHR_FP64_STR "#pragma OPENCL EXTENSION cl_khr_fp64 : enable\n" if (options && !strstr(const_cast<char *>(options), "-cl-std=CL1.1")) fwrite(ENABLE_CL_KHR_FP64_STR, strlen(ENABLE_CL_KHR_FP64_STR), 1, clFile); +#endif if (!findPCH || invalidPCH) { clOpt.push_back("-include"); |