mumu 0.11.1

Lava Mumu is a language for those in the now and that know
Documentation
extend("matrix")
extend("gpu")

a = [
  [1, 2],
  [3, 4]
]

b = [
  [5, 6],
  [7, 8]
]

ta = gpu:to_tensor(a)
tb = gpu:to_tensor(b)

tc = gpu:add(ta, tb)

result = gpu:to_array(tc)
slog(result)