summaryrefslogtreecommitdiff
path: root/sc/source/core/opencl/op_math.hxx
diff options
context:
space:
mode:
authoryangzhang <yangzhang@multicorewareinc.com>2013-11-10 09:38:30 +0800
committerI-Jui (Ray) Sung <ray@multicorewareinc.com>2013-11-14 20:30:43 -0600
commit328f788d6a047ac4291ce86fc7a4fb03b3fc93e5 (patch)
tree14fdb49892bec352bf7cdf7db9bb962413bcd2fd /sc/source/core/opencl/op_math.hxx
parent2127b93fc8f9f306665c2f778761c7c60e2154fe (diff)
GPU Calc: implemented BITOR
AMLOEXT-152 FIX Change-Id: I52747c3b2535e9bba3d167305a3ec5488a23411f Signed-off-by: haochen <haochen@multicorewareinc.com> Signed-off-by: I-Jui (Ray) Sung <ray@multicorewareinc.com>
Diffstat (limited to 'sc/source/core/opencl/op_math.hxx')
-rw-r--r--sc/source/core/opencl/op_math.hxx7
1 files changed, 7 insertions, 0 deletions
diff --git a/sc/source/core/opencl/op_math.hxx b/sc/source/core/opencl/op_math.hxx
index 71cb27931cfe..20526d888e3a 100644
--- a/sc/source/core/opencl/op_math.hxx
+++ b/sc/source/core/opencl/op_math.hxx
@@ -168,6 +168,13 @@ public:
virtual std::string GetBottom(void) { return "0.0"; }
virtual std::string BinFuncName(void) const { return "ScBitAnd"; }
};
+class OpBitOr:public Normal{
+public:
+ virtual void GenSlidingWindowFunction(std::stringstream &ss,
+ const std::string sSymName, SubArguments &vSubArguments);
+ virtual std::string GetBottom(void) { return "0.0"; }
+ virtual std::string BinFuncName(void) const { return "ScBitOr"; }
+};
class OpLn: public CheckVariables
{
public: