aboutsummaryrefslogblamecommitdiff
path: root/cumatrix_example.lua
blob: f8235eb880b1816a2ad97ddce5858ae2f28e6c14 (plain) (tree)
1
2
3
4
5
6
7
8
9
10

      

                              

                       



                                    

       
         
                 
            
         
                 
            
         
              
              
              
              
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)