You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@systemml.apache.org by "Niketan Pansare (JIRA)" <ji...@apache.org> on 2017/03/30 21:25:41 UTC

[jira] [Created] (SYSTEMML-1445) Add support for GPU axpy operation

Niketan Pansare created SYSTEMML-1445:
-----------------------------------------

             Summary: Add support for GPU axpy operation
                 Key: SYSTEMML-1445
                 URL: https://issues.apache.org/jira/browse/SYSTEMML-1445
             Project: SystemML
          Issue Type: Sub-task
            Reporter: Niketan Pansare
            Assignee: Niketan Pansare


Here's a short snippet to invoke the axpy rewrite and reproduce the issue on GPU:
{code}
n = 100
m = 10
#a = 2
a = as.scalar(rand(rows=1, cols=1))
x = rand(rows=n, cols=m)
y = rand(rows=1, cols=m)
z = x + a*y  # broadcasting
if (1==1){}
print(sum(z))
{code}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)