aboutsummaryrefslogtreecommitdiff
path: root/cumatrix_example.lua
diff options
context:
space:
mode:
authorDeterminant <ted.sybil@gmail.com>2015-05-25 16:07:34 +0800
committerDeterminant <ted.sybil@gmail.com>2015-05-25 16:07:34 +0800
commitbe922fa355fe385b45a2720d48eaf0c809e1874a (patch)
tree6ec8747f0463ffb36445d7cadec567c00b8fdbdf /cumatrix_example.lua
parent3036cc0f7597d72a36b1923ab5e0c56a4490be31 (diff)
move example files to a dedicated directory
Diffstat (limited to 'cumatrix_example.lua')
-rw-r--r--cumatrix_example.lua23
1 files changed, 0 insertions, 23 deletions
diff --git a/cumatrix_example.lua b/cumatrix_example.lua
deleted file mode 100644
index f8235eb..0000000
--- a/cumatrix_example.lua
+++ /dev/null
@@ -1,23 +0,0 @@
-m = 10
-n = 10
-fm = nerv.CuMatrixFloat(m, n)
-dm = nerv.CuMatrixDouble(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)
-fs = fm:softmax()
--- print(fs)
-print(dm)
-ds = dm:softmax()
--- print(ds)
-print(fs)
-print(fs + fs)
-print(ds + ds)
-print(fs - fs)
-print(ds - ds)