You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In attempts to run benchmarks on real data (20GB+) using this pipeline, instances of the paganin_filter_tomopy from httomolibgpu producing NaN values have been encountered.
In this particular case, the NaN values were not initially detected to have originated from the paganin filter method due to no runtime error occurring. The runtime error encountered in rescale_to_int (occurring two sections later than the section the paganin filter was in), and it took some time to work from the runtime error in rescale_to_int all the way back to its origin in the paganin filter in the first section.
To mitigate issues like this, it may be useful to have some kind of debug checks being performed at runtime (perhaps enabled by a --debug flag in the CLI?) that check things that are obviously wrong with data, such as:
output of block processing being all zeros
output of block processing being all NaN values
presence of NaN values
The text was updated successfully, but these errors were encountered:
In attempts to run benchmarks on real data (20GB+) using this pipeline, instances of the
paganin_filter_tomopy
from httomolibgpu producingNaN
values have been encountered.In this particular case, the
NaN
values were not initially detected to have originated from the paganin filter method due to no runtime error occurring. The runtime error encountered inrescale_to_int
(occurring two sections later than the section the paganin filter was in), and it took some time to work from the runtime error inrescale_to_int
all the way back to its origin in the paganin filter in the first section.To mitigate issues like this, it may be useful to have some kind of debug checks being performed at runtime (perhaps enabled by a
--debug
flag in the CLI?) that check things that are obviously wrong with data, such as:NaN
valuesNaN
valuesThe text was updated successfully, but these errors were encountered: