Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
e6a441cc
Kaydet (Commit)
e6a441cc
authored
Kas 17, 2014
tarafından
Tor Lillqvist
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Insert some fairly generic fallback whitelist entries for now
Change-Id: I1887a32aeef8097e3e8297d6bddc51179dd65127
üst
fbe3a3cf
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletion
+10
-1
Calc.xcs
officecfg/registry/schema/org/openoffice/Office/Calc.xcs
+1
-1
calcconfig.cxx
sc/source/core/tool/calcconfig.cxx
+9
-0
No files found.
officecfg/registry/schema/org/openoffice/Office/Calc.xcs
Dosyayı görüntüle @
e6a441cc
...
...
@@ -1401,7 +1401,7 @@
<info>
<desc>
Like OpenCLWhiteList, but for combinations known to be good.
</desc>
</info>
<value
oor:separator=
";"
>
Linux/*/Advanced Micro Devices, Inc./*/1445.5 (sse2,avx)/
</value>
<value
oor:separator=
";"
>
Linux/*/Advanced Micro Devices, Inc./*/1445.5 (sse2,avx)/
;*/*/Advanced Micro Devices, Inc./*/*/;*/*/Intel(R) Corporation/*/*/;*/*/NVIDIA Corporation/*/*/
</value>
</prop>
</group>
<group
oor:name=
"Syntax"
>
...
...
sc/source/core/tool/calcconfig.cxx
Dosyayı görüntüle @
e6a441cc
...
...
@@ -45,9 +45,18 @@ void ScCalcConfig::setOpenCLConfigToDefault()
maOpenCLSubsetOpCodes
.
insert
(
ocAverage
);
maOpenCLSubsetOpCodes
.
insert
(
ocSumIfs
);
// This entry we have had for some time (when blacklisting was
// done elsewhere in the code), so presumably there is a known
// good reason for it.
maOpenCLBlackList
.
insert
(
OpenCLImplMatcher
(
"Windows"
,
"*"
,
"Intel(R) Corporation"
,
"*"
,
"9.17.10.2884"
,
""
));
// This is what I have tested on Linux and it works for our unit tests.
maOpenCLWhiteList
.
insert
(
OpenCLImplMatcher
(
"Linux"
,
"*"
,
"Advanced Micro Devices, Inc."
,
"*"
,
"1445.5 (sse2,avx)"
,
""
));
// For now, assume that AMD, Intel and NVIDIA drivers are good
maOpenCLWhiteList
.
insert
(
OpenCLImplMatcher
(
"*"
,
"*"
,
"Advanced Micro Devices, Inc."
,
"*"
,
"*"
,
""
));
maOpenCLWhiteList
.
insert
(
OpenCLImplMatcher
(
"*"
,
"*"
,
"Intel(R) Corporation"
,
"*"
,
"*"
,
""
));
maOpenCLWhiteList
.
insert
(
OpenCLImplMatcher
(
"*"
,
"*"
,
"NVIDIA Corporation"
,
"*"
,
"*"
,
""
));
}
void
ScCalcConfig
::
reset
()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment