-
-
Notifications
You must be signed in to change notification settings - Fork 237
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
Conv3D #137
Comments
From the point-of-view of the library infrastructure it wouldn't be a big problem. It's just new layer type.
But with adding appropriate tests in |
Are you interested in giving it a shot? |
Well, maybe. Let's see if I can get it to compile on my machine first^^ |
@BRevolution How is it going? Any news on that? :) |
Hi Dobiasd, |
The throughput issue could be solved by just running multiple independent predictions in parallel ( |
That somewhat surprises me. All compiler optimization etc. were switched on? |
Sadly I just need to do a single prediction with batchsize 1. The CPU Tensorflow Python version needs about a minute (and uses all cores). The code generated by tfcompile needs about one hour (!), and yes, I turned optimizations on, including AVX2. |
Wow, that's extremely slow. Have you tried opening an issue in the TensorFlow repo? |
I doubt that would solve anything. It's been quite a while since they added features to AOT and they seem to have no interest in adding multithreading. So even if they fixed the slowdown with singlethreading, it still wouldnt be fast enough. |
@BRevolution Are you still interested in |
If you were to implement it, I would gladly try it out. But I fear I do not have the time to implement it myself. |
OK. I'll keep it as a todo (and leave this issue open), but currently, I can not predict when I start working on it. |
Any updates on the support of Conv3D? |
Sorry, no, not yet. |
Hi,
I'd like to use your library with models that are trained on 3d images. How hard do you think would it be for me to add support for 3d convolutions?
best regards
The text was updated successfully, but these errors were encountered: