-
Notifications
You must be signed in to change notification settings - Fork 15
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
n_tiles not automatically increased #20
Comments
I've no idea why that happens to be honest... you @tibuch ? |
hey, I'm having a similar issue with n_tiles: if I start at 2,2,2 it crashes as this number is too small. CryoCARE does increase the n_tile number but despite the increases it always crashes: Maybe it is worth increasing all of the XYZ n_tiles values as it looks like one has stayed at 2? EDIT: Just tried this and increasing the XYZ values equally still doesn't work. Perhaps something to allow the n_tiles to increase a little bit more before bailing? |
Indeed, this fails because of the |
What are the tile sizes if the tomogram is tiled with (2, 8, 8) compared to (6, 6, 6)? It could be that (2, 8, 8) is slightly larger than (6, 6, 6) in number of pixels per tile. The tiling computes for each axis the size of the tiles and multiplies the number of tiles by 2 for the longest axis. It would only start increasing the number of tiles in Z if the tile size in Z is longer than in X and Y. I don't understand the Cheers! |
Yes, 2,8,8 is larger tile size than 6,6,6. Is it possible for the program to keep trying smaller and smaller tiles for a bit longer? Sorry about the edit, I was confused about how the tiling was calculated when I wrote that so it can be ignored. |
I have this error as well, using CUDA 11.0 (as per the instructions) with A6000 cards. My tomograms are not particularly large, 682x960x266, and the GPU has 48GB of memory. I am able to run prediction using |
Hi,
My understanding is that in prediction
n_tiles
should be automatically increased until OOM errors are avoided. However, this does not seem the case. I always run into an OOM error (see below) until I increasen_tiles
to at least[2, 4, 2]
, which then works fine.This is the error I get (full stderr attached):
cryocare_single_a100.err53499526.txt
I believe that the automatic incrementing of
n_tiles
is failing because of this other errorCheck failed: narrow == wide (-1946157056 vs. 2348810240)
, has anyone seen that?Thanks!
The text was updated successfully, but these errors were encountered: