unset_precise_mode#

ivy.unset_precise_mode()[source]#

Reset the mode of whether to use a promotion table that avoids any precision loss or a compute efficient table that avoids most wider-than- necessary promotions.

Return type:

None

Examples

>>> ivy.set_precise_mode(False)
>>> ivy.precise_mode
False
>>> ivy.unset_precise_mode()
>>> ivy.precise_mode
True