Parallel Algebra Operation executed in shell
--------------------------------------------
Key: HAMA-75
URL: https://issues.apache.org/jira/browse/HAMA-75
Project: Hama
Issue Type: Improvement
Components: shell
Reporter: Samuel Guo
Priority: Minor
now the shell deals with "d = (a+b)*(c+a)" as below:
1. a + b;
2. c + a;
3. (a+b) * (c+a)
all algebra operation are executed one by one. it is bad.
the ideal execution will be:
1. (a + b) & (c+a ) are exectued parallelly.
2. do the multiplication after (a+b) & (c+a) are all done.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.