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
f4ea3fd5
Kaydet (Commit)
f4ea3fd5
authored
Haz 26, 2013
tarafından
Michael Meeks
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
use #if to avoid gotchas, move header to include, make UI conditional.
üst
b4be964f
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
43 additions
and
23 deletions
+43
-23
config_features.h.in
config_host/config_features.h.in
+7
-0
configure.ac
configure.ac
+1
-0
openclwrapper.hxx
sc/source/core/inc/openclwrapper.hxx
+3
-1
formulagroup.cxx
sc/source/core/tool/formulagroup.cxx
+22
-18
scmod.cxx
sc/source/ui/app/scmod.cxx
+6
-4
calcoptionsdlg.cxx
sc/source/ui/optdlg/calcoptionsdlg.cxx
+4
-0
No files found.
config_host/config_features.h.in
Dosyayı görüntüle @
f4ea3fd5
...
...
@@ -59,4 +59,11 @@
#define HAVE_FEATURE_MULTIUSER_ENVIRONMENT 0
/*
* Whether we have the OpenCL headers and should compile in any
* support for that abstraction.
*/
#define HAVE_FEATURE_OPENCL 0
#endif
configure.ac
Dosyayı görüntüle @
f4ea3fd5
...
...
@@ -9854,6 +9854,7 @@ else
OPENCL_CFLAGS="-I$with_opencl_sdk/include"
OPENCL_LIBS="-L$with_opencl_sdk/lib/x86 -lOpenCL"
AC_MSG_RESULT([found at path $with_opencl_sdk])
AC_DEFINE(HAVE_FEATURE_OPENCL)
else
AC_MSG_ERROR([no headers found found at $with_opencl_sdk/include ])
fi
...
...
sc/source/core/
opencl
/openclwrapper.hxx
→
sc/source/core/
inc
/openclwrapper.hxx
Dosyayı görüntüle @
f4ea3fd5
...
...
@@ -10,6 +10,8 @@
#ifndef _OPENCL_WRAPPER_H_
#define _OPENCL_WRAPPER_H_
#include <config_features.h>
#include <CL/cl.h>
#define MaxTextExtent 4096
...
...
@@ -22,7 +24,7 @@
#define strcasecmp strcmp
#endif
#endif
#define ENABLE_OPENCL //dbg
typedef
struct
_KernelEnv
{
cl_context
context
;
cl_command_queue
commandQueue
;
...
...
sc/source/core/tool/formulagroup.cxx
Dosyayı görüntüle @
f4ea3fd5
...
...
@@ -7,6 +7,7 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
#include <config_features.h>
#include "formulagroup.hxx"
#include "document.hxx"
#include "formulacell.hxx"
...
...
@@ -15,8 +16,8 @@
#include "interpre.hxx"
#include "formula/vectortoken.hxx"
#if
def ENABL
E_OPENCL
#include "openclwrapper.hxx"
#if
HAVE_FEATUR
E_OPENCL
#
include "openclwrapper.hxx"
#endif
namespace
sc
{
...
...
@@ -40,7 +41,7 @@ TimeValue aTimeBefore, aTimeAfter;
bool
FormulaGroupInterpreter
::
interpret
()
{
#if
def ENABLE_OPENCL //dbg
#if
HAVE_FEATURE_OPENCL
size_t
rowSize
=
mxGroup
->
mnLength
,
srcSize
=
0
;
fprintf
(
stderr
,
"rowSize at begin is ...%ld.
\n
"
,
rowSize
);
int
*
rangeStart
=
NULL
;
// The first position for calculation,for example,the A1 in (=MAX(A1:A100))
...
...
@@ -100,7 +101,7 @@ bool FormulaGroupInterpreter::interpret()
nRowEnd
+=
i
;
size_t
nRowSize
=
nRowEnd
-
nRowStart
+
1
;
ScMatrixRef
pMat
(
new
ScMatrix
(
nColSize
,
nRowSize
,
0.0
));
#if
def ENABL
E_OPENCL
#if
HAVE_FEATUR
E_OPENCL
//srcSize = rowSize+nRowSize-rowSize%nRowSize;//align as nRowSize
//srcData = (double *)calloc(srcSize,sizeof(double));
rangeStart
[
i
]
=
nRowStart
;
//record the start position
...
...
@@ -109,7 +110,7 @@ bool FormulaGroupInterpreter::interpret()
for
(
size_t
nCol
=
0
;
nCol
<
nColSize
;
++
nCol
)
{
const
double
*
pArray
=
rArrays
[
nCol
];
#if
def ENABL
E_OPENCL
#if
HAVE_FEATUR
E_OPENCL
//printf("pArray is %p.\n",pArray);
if
(
NULL
==
pArray
)
{
...
...
@@ -146,7 +147,7 @@ bool FormulaGroupInterpreter::interpret()
if
(
!
pDest
)
return
false
;
#if
def ENABL
E_OPENCL
#if
HAVE_FEATUR
E_OPENCL
const
formula
::
FormulaToken
*
pCur
=
aCode2
.
First
();
aCode2
.
Reset
();
while
(
(
pCur
=
aCode2
.
Next
()
)
!=
NULL
)
...
...
@@ -187,7 +188,7 @@ bool FormulaGroupInterpreter::interpret()
}
}
// for loop end (mxGroup->mnLength)
// For GPU calculation
#if
def ENABL
E_OPENCL //dbg: Using "export SC_GPU=1" to open if{} in terminal
#if
HAVE_FEATUR
E_OPENCL //dbg: Using "export SC_GPU=1" to open if{} in terminal
if
(
getenv
(
"SC_GPU"
))
{
fprintf
(
stderr
,
"ggGPU flow...
\n\n
"
);
...
...
@@ -236,17 +237,20 @@ bool FormulaGroupInterpreter::interpret()
// }
// We want to stuff the double data, which in rResult[i] from GPU calculated well, to UI view for users
for
(
sal_Int32
i
=
0
;
i
<
mxGroup
->
mnLength
;
++
i
)
{
ScFormulaCell
*
pDestx
=
mrDoc
.
GetFormulaCell
(
aTmpPos
);
if
(
!
pDestx
)
return
false
;
formula
::
FormulaTokenRef
xResult
=
new
formula
::
FormulaDoubleToken
(
rResult
[
i
]);
pDestx
->
SetResultToken
(
xResult
.
get
());
pDestx
->
ResetDirty
();
pDestx
->
SetChanged
(
true
);
aTmpPos
.
SetRow
(
mxGroup
->
mnStart
+
i
+
1
);
}
ScAddress
aInsertPos
=
maTopPos
;
for
(
sal_Int32
i
=
0
;
i
<
mxGroup
->
mnLength
;
++
i
)
{
aInsertPos
.
SetRow
(
mxGroup
->
mnStart
+
i
);
ScFormulaCell
*
pDestx
=
mrDoc
.
GetFormulaCell
(
aInsertPos
);
SAL_DEBUG
(
" put value "
<<
rResult
[
i
]
<<
" into formula at "
<<
aInsertPos
.
Col
()
<<
" , "
<<
aInsertPos
.
Row
()
);
assert
(
pDestx
);
formula
::
FormulaTokenRef
xResult
=
new
formula
::
FormulaDoubleToken
(
rResult
[
i
]);
pDestx
->
SetResultToken
(
xResult
.
get
());
pDestx
->
ResetDirty
();
pDestx
->
SetChanged
(
true
);
}
}
if
(
leftData
)
...
...
sc/source/ui/app/scmod.cxx
Dosyayı görüntüle @
f4ea3fd5
...
...
@@ -17,6 +17,8 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#include <config_features.h>
#include <com/sun/star/ui/dialogs/XSLTFilterDialog.hpp>
#include <comphelper/processfactory.hxx>
...
...
@@ -101,8 +103,8 @@
#include "scabstdlg.hxx"
#include "formula/errorcodes.hxx"
#if
def ENABL
E_OPENCL
#include "openclwrapper.hxx"
#if
HAVE_FEATUR
E_OPENCL
#
include "openclwrapper.hxx"
#endif
#define SC_IDLE_MIN 150
...
...
@@ -152,7 +154,7 @@ ScModule::ScModule( SfxObjectFactory* pFact ) :
mbIsInSharedDocLoading
(
false
),
mbIsInSharedDocSaving
(
false
)
{
#if
def ENABL
E_OPENCL
#if
HAVE_FEATUR
E_OPENCL
OclCalc
::
InitEnv
();
#endif
// im ctor ist der ResManager (DLL-Daten) noch nicht initialisiert!
...
...
@@ -188,7 +190,7 @@ ScModule::ScModule( SfxObjectFactory* pFact ) :
ScModule
::~
ScModule
()
{
#if
def ENABL
E_OPENCL
#if
HAVE_FEATUR
E_OPENCL
OclCalc
::
ReleaseOpenclRunEnv
();
#endif
OSL_ENSURE
(
!
pSelTransfer
,
"Selection Transfer object not deleted"
);
...
...
sc/source/ui/optdlg/calcoptionsdlg.cxx
Dosyayı görüntüle @
f4ea3fd5
...
...
@@ -10,6 +10,8 @@
*
*/
#include <config_features.h>
#include "calcoptionsdlg.hxx"
#include "sc.hrc"
#include "scresid.hxx"
...
...
@@ -197,7 +199,9 @@ void ScCalcOptionsDialog::FillOptionsList()
}
pModel
->
Insert
(
createBoolItem
(
maCaptionEmptyStringAsZero
,
maConfig
.
mbEmptyStringAsZero
));
#if HAVE_FEATURE_OPENCL
pModel
->
Insert
(
createBoolItem
(
maCaptionOpenCLEnabled
,
maConfig
.
mbOpenCLEnabled
));
#endif
mpLbSettings
->
SetUpdateMode
(
true
);
}
...
...
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