summaryrefslogtreecommitdiff
path: root/sc/source/core/opencl/op_math.hxx
diff options
context:
space:
mode:
authormulei <mulei@multicorewareinc.com>2013-12-16 11:58:41 +0800
committerI-Jui (Ray) Sung <ray@multicorewareinc.com>2013-12-19 17:54:02 -0600
commitc46a3b6c78e56b64f1c36a257143abded69af370 (patch)
treea0a6f5404e00f530da30529bccbf05227aea538a /sc/source/core/opencl/op_math.hxx
parentbfef2c95524bdb7ad8f6c6271e8858acd4585e25 (diff)
GPU Calc: implemented SECH
AMLOEXT-368 FIX Change-Id: I8c0bece5ec12cd6def88431cf1d075d542369ca4 Signed-off-by: haochen <haochen@multicorewareinc.com> Signed-off-by: Wei Wei <weiwei@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.hxx8
1 files changed, 8 insertions, 0 deletions
diff --git a/sc/source/core/opencl/op_math.hxx b/sc/source/core/opencl/op_math.hxx
index 057df6571172..b1d95f6f3240 100644
--- a/sc/source/core/opencl/op_math.hxx
+++ b/sc/source/core/opencl/op_math.hxx
@@ -30,6 +30,14 @@ public:
virtual std::string BinFuncName(void) const { return "Sec"; }
};
+class OpSecH: public Normal
+{
+public:
+ virtual void GenSlidingWindowFunction(std::stringstream &ss,
+ const std::string sSymName, SubArguments &vSubArguments);
+
+ virtual std::string BinFuncName(void) const { return "SecH"; }
+};
class OpCsc: public Normal
{
public: