summaryrefslogtreecommitdiff
path: root/sc/source/core/opencl/op_statistical.hxx
diff options
context:
space:
mode:
authormingli <mingli@multicorewareinc.com>2013-11-05 15:34:53 +0800
committerI-Jui (Ray) Sung <ray@multicorewareinc.com>2013-11-13 00:45:03 -0600
commit2df5ef3821136cad0eb930ca2698be747b24f031 (patch)
tree7b5c536286d2c1263836904717d8b56beee8ce24 /sc/source/core/opencl/op_statistical.hxx
parent84a63e75caa46188f8ae88c02bf82c512d3fa146 (diff)
GPU Calc: implemented for KURT
AMLOEXT-87 FIX Change-Id: I5b16116f53b00619b4bbeaa358545f32297f33da 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_statistical.hxx')
-rw-r--r--sc/source/core/opencl/op_statistical.hxx8
1 files changed, 7 insertions, 1 deletions
diff --git a/sc/source/core/opencl/op_statistical.hxx b/sc/source/core/opencl/op_statistical.hxx
index 1002fa9fe198..87b02b9cbd17 100644
--- a/sc/source/core/opencl/op_statistical.hxx
+++ b/sc/source/core/opencl/op_statistical.hxx
@@ -123,7 +123,13 @@ class OpMedian:public Normal{
const std::string sSymName, SubArguments &vSubArguments);
virtual std::string BinFuncName(void) const { return "OpMedian"; }
};
-
+class OpKurt: public Normal
+{
+public:
+ virtual void GenSlidingWindowFunction(std::stringstream &ss,
+ const std::string sSymName, SubArguments &vSubArguments);
+ virtual std::string BinFuncName(void) const { return "Kurt"; }
+};
}}
#endif