-
Notifications
You must be signed in to change notification settings - Fork 146
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
Question about writing my OPS #907
Comments
You may divide the model in three graphs
Then, you can convert two WebGL part separately and write original operator in pure js (not using webdnn). WebDNN can load multiple graphs in one browser session.
|
@milhidaka thanks for reply. My third question is more how do I access eigen in my webassembly OPs. I have properly installed them.
|
Eigen is not seamlessly integrated with webdnn's array. You have to manually wrap raw point as Eigen matrix with specifying shape. This is the (only) working example:
|
I'm thinking in creating a replacement of fallback backend replacing all the ops with gpu.js and giving access to the api, that way we would have access to js with gpu right? |
Hi,
I'm writing my own ops for TF. I have some doubts and maybe someone can explain them to me.
I have read the docs however I had to figure out the rest looking at the code.
There are four backends:
I'm interested on webGL and webassembly, my doubts are:
The text was updated successfully, but these errors were encountered: