summaryrefslogtreecommitdiff
path: root/sc/source/core/opencl/op_statistical.hxx
diff options
context:
space:
mode:
authorshiming zhang <shiming@multicorewareinc.com>2013-11-16 18:54:42 +0800
committerI-Jui (Ray) Sung <ray@multicorewareinc.com>2013-11-16 23:20:13 -0600
commita81e6fb33b3dca4cc50155a3d6fa7db3207e4579 (patch)
tree1c214d7cb887adc0dfa50bb93c6acc910022747a /sc/source/core/opencl/op_statistical.hxx
parent48e2405de783b61882b0a103df80c5f6b3be6dd9 (diff)
GPU Calc: implemented TDIST
AMLOEXT-190 FIX Change-Id: I9745d4e2b3b25640abfa5ee8165d1335fb52c6b6 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, 8 insertions, 0 deletions
diff --git a/sc/source/core/opencl/op_statistical.hxx b/sc/source/core/opencl/op_statistical.hxx
index 6b31ccc78f43..7f6b017d6d7d 100644
--- a/sc/source/core/opencl/op_statistical.hxx
+++ b/sc/source/core/opencl/op_statistical.hxx
@@ -92,6 +92,14 @@ public:
virtual void BinInlineFun(std::set<std::string>& ,std::set<std::string>&);
virtual std::string BinFuncName(void) const { return "Fdist"; }
};
+class OpTDist: public Normal
+{
+public:
+ virtual void GenSlidingWindowFunction(std::stringstream &ss,
+ const std::string sSymName, SubArguments &vSubArguments);
+ virtual std::string BinFuncName(void) const { return "TDist"; }
+ virtual void BinInlineFun(std::set<std::string>& ,std::set<std::string>&);
+};
class OpTTest: public Normal
{
public: