diff options
author | Ted Yin <[email protected]> | 2015-05-26 15:28:26 +0800 |
---|---|---|
committer | Ted Yin <[email protected]> | 2015-05-26 15:28:26 +0800 |
commit | 565de7961df25daa3fb437bc7aac0303270387bf (patch) | |
tree | bed14c3aafe069b416a587abe5908d2b858f0716 /examples/mmatrix_example.lua | |
parent | 676eb07afc1307c38c3b0089476f7cabe17cc72e (diff) | |
parent | be67a3a973bd58eff23af7add83e328c1f58451c (diff) |
Merge pull request #4 from cloudygoose/txh18-test
add nerv_matrix_(get_dataref_value) method
Diffstat (limited to 'examples/mmatrix_example.lua')
-rw-r--r-- | examples/mmatrix_example.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/examples/mmatrix_example.lua b/examples/mmatrix_example.lua index 679fde3..8ddfe84 100644 --- a/examples/mmatrix_example.lua +++ b/examples/mmatrix_example.lua @@ -10,6 +10,10 @@ for i = 0, m - 1 do dm[i][j] = t end end +print("test fm:get_dataref_value:", fm:get_dataref_value()) +print("forced a garbade collect") +collectgarbage("collect") +print("test fm:get_dataref_value:", fm:get_dataref_value()) print(fm) -- print(fm:softmax()) print(dm) |