-
Notifications
You must be signed in to change notification settings - Fork 506
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
Facing linking error "undefined reference to `executorch::extension::FileDataLoader::from" #9636
Comments
UPDATE
However, while building the "extension_module" lib, I am seeing the following compilation issue
I couldn't find any such file in the |
Hmm not the most familiar, it seems like sys/mman should be on posix compliant systems. @tarun292 any idea on that? A different problem we could fix that would help you resolve this would be to split the data loaders into separate libraries in the cmake build. Then you could just not include the mmap data loader and avoid this dependency entirely on your system. |
Hi @JacobSzwejbka,
I can try to implement this work around, until the fix is available. So, could you please elaborate more on the steps I need to take to implement it? |
@vikasbalaga have you tried
|
@vikasbalaga In https://github.com/pytorch/executorch/blob/main/extension/data_loader/CMakeLists.txt you will need to split it from just one library "extension_data_loader" into several different cmake targets. Such as "extension_mmap_data_loader" "extension_file_data_loader". Etc. This will involve hunting down where _extension_data_loader__srcs is defined and splitting it into several source lists as well (it used to be defined in a .toml copying from the buck build but I was unable to find that file so maybe someone changed it :( ). Finally we would need to update all the targets depending on extension_data_loader to depend on the specific dataloaders they actually need. extension_module for instance would want file and mmap. You would not want mmap in your build. |
@JacobSzwejbka and @tarun292, thanks for your response. I took a glance at the arm_executor_runner implementation and tried to replicate the same approach of compiling the model as a header file in my application.
So, can you give me your insights, if I am missing anything here? (I am sure that sufficient heap memory is allocated for the app) |
🐛 Describe the bug
Hi,
I am trying Executorch C++ tutorial, by linking executorch libs into my custom application.
The compilation step is OK, but while linking my application, I am facing the below issue :
undefined reference to executorch::extension::FileDataLoader::from(char const*, unsigned int)
By following the tutorial, I have made the following changes (I am showing only diff) in my application :
Also, I linked the following libs with my application :
I can confirm that, these libs don't contain any reference to
FileDataLoader
and I have seen some examples in the repo, which follow similar steps.So, could you please help me in resolving this issue?
Versions
cc @larryliu0820 @jathu @lucylq
The text was updated successfully, but these errors were encountered: