gpt4 book ai didi

垃圾收集中的 luajit 段错误

转载 作者:行者123 更新时间:2023-12-01 18:18:38 24 4
gpt4 key购买 nike

我在使用 ffi.metatype 定义的用户数据时遇到问题。当对象被垃圾收集时,我会遇到段错误。这是代码。

ffi = require("ffi")
srate = 48000

ffi.cdef[[
typedef struct sin_state {
float _now; // time of last eval
float _last; // result of last eval
float _freq; // frequency
float _gain; // gain
float _phase; // phase
float _w; // angular speed in radians/sample
float _p; // update parameter
float _y[3]; // last 3 steps
} sin_t;
]]

sin = {}

sin.mt = {
__call = function(s,now)
if s._now < now then
s._now = now
s._phase = (s._phase + s._w) % 2 * math.pi
s._y[1] = s._p * s._y[2] - s._y[3]
s._y[3] = s._y[2]
s._y[2] = s._y[1]
s._last = s._y[1] * s._gain
end
return s._last
end,

__index = function(s,k)
return s["_"..k]
end,

__newindex = function(s,k,v)
-- update parameter
s["_"..k] = v
-- update internal state
sin.update(s)
end
}

function sin.update(s)
s._w = s._freq * 2 * math.pi / srate
s._p = 2 * math.cos(s._w)
s._y[3] = math.sin(-2 * s._w + s._phase)
s._y[2] = math.sin(-1 * s._w + s._phase)
s._y[1] = s._p * s._y[2] - s._y[3]
s._last = s._y[1] * s._gain
end

sin.state = ffi.metatype("sin_t",sin.mt)

function sin.new(t)
local t = t or {}
local params = {
_freq = t.freq or 440,
_gain = t.gain or 1,
_phase = t.phase or 0,
}
local s = sin.state(params)
sin.update(s)
return s
end

s = sin.new()
print(s(1))
s = nil
print("garbage collecting")
collectgarbage()
print("done")

运行:

% luajit test.lua
6.6929342068534e-09
garbage collecting
[1] 20398 segmentation fault (core dumped) luajit test.lua

我错过了什么吗?我应该定义一个 __gc 元方法吗?如果是这样,我应该在那里放什么?

最佳答案

好的,像往常一样,我在发布几分钟后就发现了错误。

我弄乱了 _y 数组的索引。不知何故,我印象中 luaJIT 的 FFI 库正在执行索引转换(从 1 而不是 0 开始),但事实并非如此。

我刚刚将所有 _y[X] 减去 1,效果很好。

关于垃圾收集中的 luajit 段错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20632092/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com