From 2df5ef3821136cad0eb930ca2698be747b24f031 Mon Sep 17 00:00:00 2001 From: mingli Date: Tue, 5 Nov 2013 15:34:53 +0800 Subject: GPU Calc: implemented for KURT AMLOEXT-87 FIX Change-Id: I5b16116f53b00619b4bbeaa358545f32297f33da Signed-off-by: haochen Signed-off-by: I-Jui (Ray) Sung --- sc/source/core/opencl/op_statistical.hxx | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'sc/source/core/opencl/op_statistical.hxx') 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 -- cgit