From 81c115e09f9449ae61c7352edd77c68e9029f2dc Mon Sep 17 00:00:00 2001 From: Determinant Date: Mon, 25 May 2015 17:27:29 +0800 Subject: add "copy from/to cumatrix" functionality --- examples/cumatrix_from_mmatrix.lua | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 examples/cumatrix_from_mmatrix.lua (limited to 'examples/cumatrix_from_mmatrix.lua') diff --git a/examples/cumatrix_from_mmatrix.lua b/examples/cumatrix_from_mmatrix.lua new file mode 100644 index 0000000..fba8a90 --- /dev/null +++ b/examples/cumatrix_from_mmatrix.lua @@ -0,0 +1,23 @@ +m = 10 +n = 10 +fm = nerv.MMatrixFloat(m, n) +dm = nerv.MMatrixDouble(m, n) +for i = 0, m - 1 do + for j = 0, n - 1 do + -- local t = math.random(10) + t = i / (j + 1) + fm[i][j] = t + dm[i][j] = t + end +end +print(fm) +print(dm) + +fc = nerv.CuMatrixFloat(m, n) +dc = nerv.CuMatrixDouble(m, n) +fc:copy_from(fm) +dc:copy_from(dm) +print(fc) +print(dc) +print(fc:softmax()) +print(dc:softmax()) -- cgit v1.2.3