我正在使用Julia 1.1.1和Cxx的0.3.2版本。我发现从定义的模块中调用icxx“”时出现错误,但在REPL中调用时却没有。在REPL中,我有:
using Cxx
function xformVectors()
cxx"""
#include <iostream>
#include <vector>
class Summer {
public:
Summer() {}
std::vector<int> compute_sum(const std::vector<std::vector<int>> &input) {
std::vector<int> result(input.size(), 0);
for (std::size_t i = 0; i != input.size(); ++i) {
for (std::size_t j = 0; j != input[i].size(); ++j) {
result[i] += input[i][j];
}
}
return result;
}
};
"""
as = [rand(1:10,5), rand(1:10,6)]
x = convert(cxxt"std::vector< std::vector< int > >", as)
summer = @cxxnew Summer()
cxx_v = icxx"$summer->compute_sum($x);"
for v in cxx_v
println(collect(v))
end
end
如果再调用
xformVectors()
,它将写出几个整数并退出(预期行为)。如果我使用Pkg.generate()将此代码包装在模块中,然后调用xformVectors()
,则会出现致命错误:ERROR: BoundsError: attempt to access 36-element Array{Tuple{AbstractString,Symbol,Int64,Int64,Bool},1} at index [37]
Stacktrace:
[1] getindex(::Array{Tuple{AbstractString,Symbol,Int64,Int64,Bool},1}, ::Int64) at ./array.jl:729
[2] #s37#70 at /home/jov9025/.julia/packages/Cxx/vxYtJ/src/cxxstr.jl:705 [inlined]
[3] #s37#70(::Any, ::Any, ::Any, ::Any) at ./none:0
[4] (::Core.GeneratedFunctionStub)(::Any, ::Vararg{Any,N} where N) at ./boot.jl:522
[5] xformVectors() at /home/jov9025/sandbox/julia/Vector2Vector.jl/src/Vector2Vector.jl:30
[6] top-level scope at none:0
如果在REPL中包含源文件(
include("src/Vector2Vector.jl"
),然后调用Vector2Vector.xformVectors()
,则该文件运行时不会出现问题。知道发生了什么吗?
最佳答案
我的代码中导致错误的行是:
cxx_v = icxx"$summer->compute_sum($x);"
我仍然不了解icxx“”是什么问题,但实际上并不需要在此示例(或我的真实代码)中使用它。我可以只使用
@cxx
宏,瞧,不会崩溃:cxx_v = @cxx compute_sum(x)
因此,我可能一直在问错问题(尽管我认为这是一个有趣的问题)。
关于c++ - julia Cxx在模块中包装不同的行为,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/58288244/