summaryrefslogtreecommitdiff
path: root/sc/source/core/opencl/op_statistical.hxx
diff options
context:
space:
mode:
authorhongyu zhong <hongyu@multicorewareinc.com>2013-11-05 16:33:10 +0800
committerI-Jui (Ray) Sung <ray@multicorewareinc.com>2013-11-13 00:45:05 -0600
commit94eb481d26bcbeeed230d7cc9573890be9a3888f (patch)
tree21763aa94e8da78988bd72b6e071b236c1ac5272 /sc/source/core/opencl/op_statistical.hxx
parentdd3ac582e704d7ef9fcb9fb5f45c7e624aa0c162 (diff)
GPU Calc: implemented NORMDIST
AMLOEXT-101 FIX Change-Id: Id0e65824f63fd3d88b8092566b064719aeb11596 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.hxx6
1 files changed, 6 insertions, 0 deletions
diff --git a/sc/source/core/opencl/op_statistical.hxx b/sc/source/core/opencl/op_statistical.hxx
index 87b02b9cbd17..e3e4573d3456 100644
--- a/sc/source/core/opencl/op_statistical.hxx
+++ b/sc/source/core/opencl/op_statistical.hxx
@@ -117,6 +117,12 @@ public:
const std::string sSymName, SubArguments &vSubArguments);
virtual std::string BinFuncName(void) const { return "OpRsq"; }
};
+class OpNormdist:public Normal{
+ public:
+ virtual void GenSlidingWindowFunction(std::stringstream &ss,
+ const std::string sSymName, SubArguments &vSubArguments);
+ virtual std::string BinFuncName(void) const { return "OpNormdist"; }
+};
class OpMedian:public Normal{
public:
virtual void GenSlidingWindowFunction(std::stringstream &ss,