summaryrefslogtreecommitdiff
path: root/sc/source/core/opencl/op_statistical.hxx
diff options
context:
space:
mode:
authormingli <mingli@multicorewareinc.com>2013-11-07 14:09:16 +0800
committerI-Jui (Ray) Sung <ray@multicorewareinc.com>2013-11-13 17:44:12 -0600
commit38303bba7af44cbc876eee0ed38c713b60d29966 (patch)
treeb4040638603c94aa8db6e170c0f02fd875276fc5 /sc/source/core/opencl/op_statistical.hxx
parent975e946f04cd39aa620d7c7d61833fdb40572355 (diff)
GPU Calc: implemented FORECAST
AMLOEXT-109 FIX Change-Id: I3be61f73e7a2d48b4977bb80ecd8df8e86f49929 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.hxx7
1 files changed, 7 insertions, 0 deletions
diff --git a/sc/source/core/opencl/op_statistical.hxx b/sc/source/core/opencl/op_statistical.hxx
index 19ad6a596f8b..73f7ecee59f6 100644
--- a/sc/source/core/opencl/op_statistical.hxx
+++ b/sc/source/core/opencl/op_statistical.hxx
@@ -211,6 +211,13 @@ public:
virtual std::string BinFuncName(void) const { return "CritBinom"; }
};
+class OpForecast: public Normal
+{
+public:
+ virtual void GenSlidingWindowFunction(std::stringstream &ss,
+ const std::string sSymName, SubArguments &vSubArguments);
+ virtual std::string BinFuncName(void) const { return "Forecast"; }
+};
}}
#endif