You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using RandomKit with lua 5.3 generate this error in file randomkit/wrapC.lua:193.
when executed in the following file: require 'randomkit' torch.getRNGState()
Changing line 193 from:
'local clonedState = ffi.string(randomkit._state, ffi.sizeof(randomkit._state))'
to local clonedState = randomkit._state, ffi.sizeof(randomkit._state)
correct the problem however I have no idea of the implication of the change on other system and other lua system.
The text was updated successfully, but these errors were encountered:
Using RandomKit with lua 5.3 generate this error in file randomkit/wrapC.lua:193.
when executed in the following file:
require 'randomkit' torch.getRNGState()
Changing line 193 from:
'local clonedState = ffi.string(randomkit._state, ffi.sizeof(randomkit._state))'
to
local clonedState = randomkit._state, ffi.sizeof(randomkit._state)
correct the problem however I have no idea of the implication of the change on other system and other lua system.
The text was updated successfully, but these errors were encountered: