Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

segfault when try to run export_srcpkg example #37

Open
alec-l-1 opened this issue Oct 14, 2024 · 0 comments
Open

segfault when try to run export_srcpkg example #37

alec-l-1 opened this issue Oct 14, 2024 · 0 comments

Comments

@alec-l-1
Copy link

Hi. I am trying to run the example here https://tl2cgen.readthedocs.io/en/latest/treelite-migration.html but run into segfault when try to export the source package.

Here is my python code, essentially just copied from the link:

import treelite
import tl2cgen

builder = treelite.ModelBuilder(num_feature=3)

tree = treelite.ModelBuilder.Tree()
tree[0].set_numerical_test_node(
feature_id=0,
opname="<",
threshold=5.0,
default_left=True,
left_child_key=1,
right_child_key=2
)
tree[1].set_leaf_node(0.6)
tree[2].set_leaf_node(-0.4)
tree[0].set_root()

builder.append(tree)
model = builder.commit()  # Obtain treelite.Model object

tl2cgen.export_srcpkg(model, toolchain='gcc', pkgpath='./mymodel_pkg.zip', libname = "./mymodel.so", params={})

Here is the bt from the gdb:

#0  0x00007fffe76baf86 in void rapidjson::GenericReader<rapidjson::UTF8<char>, rapidjson::UTF8<char>, rapidjson::CrtAllocator>::ParseString<0u, rapidjson::GenericStringStream<rapidjson::UTF8<char> >, rapidjson::GenericDocument<rapidjson::UTF8<char>, rapidjson::MemoryPoolAllocator<rapidjson::CrtAllocator>, rapidjson::CrtAllocator> >(rapidjson::GenericStringStream<rapidjson::UTF8<char> >&, rapidjson::GenericDocument<rapidjson::UTF8<char>, rapidjson::MemoryPoolAllocator<rapidjson::CrtAllocator>, rapidjson::CrtAllocator>&, bool) ()
   from /home/python/py3.10/lib/libtreelite.so
#1  0x00007fffe76bc160 in void rapidjson::GenericReader<rapidjson::UTF8<char>, rapidjson::UTF8<char>, rapidjson::CrtAllocator>::ParseValue<0u, rapidjson::GenericStringStream<rapidjson::UTF8<char> >, rapidjson::GenericDocument<rapidjson::UTF8<char>, rapidjson::MemoryPoolAllocator<rapidjson::CrtAllocator>, rapidjson::CrtAllocator> >(rapidjson::GenericStringStream<rapidjson::UTF8<char> >&, rapidjson::GenericDocument<rapidjson::UTF8<char>, rapidjson::MemoryPoolAllocator<rapidjson::CrtAllocator>, rapidjson::CrtAllocator>&) ()
   from /home/python/py3.10/lib/libtreelite.so
#2  0x00007fffe5de2b68 in tl2cgen::compiler::CompilerParam::ParseFromJSON(char const*) () from /home/python/py3.10/lib/libtl2cgen.so
#3  0x00007fffe5ddde52 in TL2cgenGenerateCode () from /home/python/py3.10/lib/libtl2cgen.so
#4  0x00007ffff7e3d052 in ffi_call_unix64 () from /home/python/py3.10/lib/python3.10/lib-dynload/../../libffi.so.8

Wonder if anyone might have insight about what happened. Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant