Repository: systemml
Updated Branches:
  refs/heads/gh-pages 91190d6df -> b5a248a4b


[SYSTEMML-1426] Support both ceil and ceiling built-in functions

Added support for ceiling built-in function while keeping existing ceil
function with same internal compiler/runtime constants and opcode.  Also
included unit tests for ceiling.

Closes #674.


Project: http://git-wip-us.apache.org/repos/asf/systemml/repo
Commit: http://git-wip-us.apache.org/repos/asf/systemml/commit/b5a248a4
Tree: http://git-wip-us.apache.org/repos/asf/systemml/tree/b5a248a4
Diff: http://git-wip-us.apache.org/repos/asf/systemml/diff/b5a248a4

Branch: refs/heads/gh-pages
Commit: b5a248a4b420bb24b350bd905632aa7c6cc07b3d
Parents: 91190d6
Author: Glenn Weidner <[email protected]>
Authored: Fri Sep 29 10:28:15 2017 -0700
Committer: Glenn Weidner <[email protected]>
Committed: Fri Sep 29 10:28:15 2017 -0700

----------------------------------------------------------------------
 dml-language-reference.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/systemml/blob/b5a248a4/dml-language-reference.md
----------------------------------------------------------------------
diff --git a/dml-language-reference.md b/dml-language-reference.md
index c402acc..58ca306 100644
--- a/dml-language-reference.md
+++ b/dml-language-reference.md
@@ -821,7 +821,7 @@ is same as
 
 Function | Description | Parameters | Example
 -------- | ----------- | ---------- | -------
-exp(), log(), abs(), sqrt(), round(), floor(), ceil() | Apply mathematical 
function on input (cell wise if input is matrix) | Input: (&lt;matrix&gt;), or 
(&lt;scalar&gt;) <br/> Output: &lt;matrix&gt;, or &lt;scalar&gt; | sqrt(X) 
<br/> log(X,y) <br/> round(X) <br/> floor(X) <br/> ceil(X)
+exp(), log(), abs(), sqrt(), round(), floor(), ceil(), ceiling() | Apply 
mathematical function on input (cell wise if input is matrix) | Input: 
(&lt;matrix&gt;), or (&lt;scalar&gt;) <br/> Output: &lt;matrix&gt;, or 
&lt;scalar&gt; | sqrt(X) <br/> log(X,y) <br/> round(X) <br/> floor(X) <br/> 
ceil(X) <br/> ceiling(X)
 sin(), cos(), tan(), sinh(), cosh(), tanh(), asin(), acos(), atan() | Apply 
trigonometric function on input (cell wise if input is matrix) | Input: 
(&lt;matrix&gt;), or (&lt;scalar&gt;) <br/> Output: &lt;matrix&gt;, or 
&lt;scalar&gt; | sin(X)
 sign() | Returns a matrix representing the signs of the input matrix elements, 
where 1 represents positive, 0 represents zero, and -1 represents negative | 
Input : (A &lt;matrix&gt;) <br/> Output : &lt;matrix&gt; | <span 
style="white-space: nowrap;">A = matrix("-5 0 3 -3",</span> rows=2, cols=2) 
<br/>signA = sign(A)<br/>Matrix signA: [[-1, 0], [1, -1]]
 

Reply via email to