-
Notifications
You must be signed in to change notification settings - Fork 413
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
kernel 'executorch_prim::et_view.default' not found. #7459
Comments
After I use another implementation of mobilenetv2 it worked, don't know why |
So if you add |
@dbort to update our docs to showcase how to use executorch libs into your custom cpp apps |
@dinusha94 |
@jpeng2012 in order for those libraries to be built, you need to enable them in your cmake command. For example:
|
@dinusha94 just curious, what other implementation of mobilenetv2 did you try that resulted in it working? |
🐛 Describe the bug
I am trying to use mobilenet v2 pte with the executorch module extension. but getting the following error. I have followed the setting up tutorial and set up the executorch environment.
I am trying to incorporate the executorch into my simple application using the following CMakeList.txt
I exported the mobilent v2 into a pte file using the following python script
Following in my main.cpp script where I use the executorch module extension to run an inference.
after
make
and run./SimpleApp
I get the following error. when I try the add.pte and theSimpleConv
model shown in the exporting tutorial I get no such issues and works fine.when I inspect the
libexcutorch.a
withnm
tool I see the following et_view definition, not the one shown in the errornm -C libexecutorch.a | grep et_view
Any help on this would be highly appreciated
Thank you
Versions
The text was updated successfully, but these errors were encountered: