unset_inplace_mode#

ivy.unset_inplace_mode()[source]#

Reset the memory management behavior for in-place updates in Ivy to the previous state.

Return type:

None

Examples

>>> set_inplace_mode('strict')
>>> ivy.inplace_mode
'strict'
>>> unset_inplace_mode()
>>> ivy.inplace_mode
'lenient'