Suppress numpy warning during uarray creation #1070
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Suppress invalid value warning from numpy during data processing
When handling level one data, DataProcessor would produce a numpy warning about
an invalid value. Briefly, the reason the warning is emitted is that
uncertainties
callsnumpy.vectorize
which callsuncertainties.core.Variable
from within numpy C extension code.Variable
does a
std_dev < 0
check andDataProcessor
setsstd_dev
initially tonan
. When the CPU does a floating point comparison withnan
, it sets anexception flag. Python ignores this flag, but numpy emits a warning, so when
Variable
is created from within the numpy C code the warning is detected andemitted. As we know this chain of events will happen, we can simply ignore the
warning for this operation.