aboutsummaryrefslogtreecommitdiff
path: root/examples/cumatrix_from_mmatrix.lua
diff options
context:
space:
mode:
authorDeterminant <ted.sybil@gmail.com>2015-06-22 19:01:29 +0800
committerDeterminant <ted.sybil@gmail.com>2015-06-22 19:01:29 +0800
commit2497fd9e7a0fae5ee4887890d7a312e0e08a93b8 (patch)
tree382f97575bd2df9ee6abb1662b11b279fc22d72b /examples/cumatrix_from_mmatrix.lua
parent196e9b48a3541caccdffc5743001cced70667091 (diff)
major change: use luarocks to manage project
Diffstat (limited to 'examples/cumatrix_from_mmatrix.lua')
-rw-r--r--examples/cumatrix_from_mmatrix.lua32
1 files changed, 0 insertions, 32 deletions
diff --git a/examples/cumatrix_from_mmatrix.lua b/examples/cumatrix_from_mmatrix.lua
deleted file mode 100644
index 2309e14..0000000
--- a/examples/cumatrix_from_mmatrix.lua
+++ /dev/null
@@ -1,32 +0,0 @@
-m = 3
-n = 4
-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_fromh(fm)
-dc:copy_fromh(dm)
-print("fc and dc")
-print(fc)
-print(dc)
-dc[1]:copy_tod(dc[0])
-print("dc[1] copied to dc[0]")
-print(dc)
-print("softmax of fc and dc")
-sfc = fc:create()
-sdc = dc:create()
-sfc:softmax(fc)
-print(sfc)
-sdc:softmax(dc)
-print(sdc)