summaryrefslogtreecommitdiff
path: root/opencl
diff options
context:
space:
mode:
authorIlmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>2021-02-11 09:36:53 +0200
committerIlmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>2021-02-11 10:02:21 +0100
commit03b070a71772c93bbac0bfb07e2d9e6fbf544ef5 (patch)
treea6a0680d3c350e43529da6563a1ee87eecc627a8 /opencl
parentc76e6307b6cf33bda0cfa12647ed0342aecc1b29 (diff)
Update OpenCL denylist and allowlist
Add bad Intel driver reported by a new developer. Remove superfluous AMD allowlist entry. Change-Id: Ide5092dab7e0fa7f40ee512ba2dc9283bd9e95be Reviewed-on: https://gerrit.libreoffice.org/c/core/+/110749 Tested-by: Jenkins Reviewed-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>
Diffstat (limited to 'opencl')
-rw-r--r--opencl/source/openclconfig.cxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/opencl/source/openclconfig.cxx b/opencl/source/openclconfig.cxx
index 4403c1d98e1a..5467fc5e83c9 100644
--- a/opencl/source/openclconfig.cxx
+++ b/opencl/source/openclconfig.cxx
@@ -29,9 +29,8 @@ OpenCLConfig::OpenCLConfig() :
// done elsewhere in the code), so presumably there is a known
// good reason for it.
maDenyList.insert(ImplMatcher("Windows", "", "Intel\\(R\\) Corporation", "", "9\\.17\\.10\\.2884"));
-
- // This is what I have tested on Linux and it works for our unit tests.
- maAllowList.insert(ImplMatcher("Linux", "", "Advanced Micro Devices, Inc\\.", "", "1445\\.5 \\(sse2,avx\\)"));
+ // This was reported to produce bogus values in unit tests
+ maDenyList.insert(ImplMatcher("Windows", "", "Intel\\(R\\) Corporation", "", "27\\.20\\.100\\.8681"));
// For now, assume that AMD, Intel and NVIDIA drivers are good
maAllowList.insert(ImplMatcher("", "", "Advanced Micro Devices, Inc\\.", "", ""));