aboutsummaryrefslogtreecommitdiff
path: root/cumatrix_example.lua
blob: c2f21394911e6088b2149c1350c74bc2691872c8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
m = 10
n = 10
t = nerv.FloatCuMatrix(m, n)
-- print(t)
a = t[1]
for i = 0, m - 1 do
    for j = 0, n - 1 do
--        t[i][j] = i + j
        t[i][j] = math.random(10)
    end
end
print(t)
print(t:colsum())
print(t:colmax())
print(t:softmax())