You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

Matrix Domain Specific Language for Hama

A matrix domain specific language (DSL) support for Hama will be greatly simplifying learning curve for scientific users to use Hama. Instead of using Java, Groovy can provide a MATLAB-like syntax and idiom. This page discusses the design of the DSL for Hama.

Code Example

import static org.apache.hama.groovy.Matrix.*

def a = random(10,10)
def b = eyes(10)
def c = a * b

Application Programming Interface

TODO

  • No labels