diff options
Diffstat (limited to 'examples/cumatrix_from_mmatrix.lua')
-rw-r--r-- | examples/cumatrix_from_mmatrix.lua | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/examples/cumatrix_from_mmatrix.lua b/examples/cumatrix_from_mmatrix.lua index 1aac1c4..2309e14 100644 --- a/examples/cumatrix_from_mmatrix.lua +++ b/examples/cumatrix_from_mmatrix.lua @@ -24,5 +24,9 @@ dc[1]:copy_tod(dc[0]) print("dc[1] copied to dc[0]") print(dc) print("softmax of fc and dc") -print(fc:softmax()) -print(dc:softmax()) +sfc = fc:create() +sdc = dc:create() +sfc:softmax(fc) +print(sfc) +sdc:softmax(dc) +print(sdc) |