mindspore.runtime.memory_reserved

View Source On Gitee
mindspore.runtime.memory_reserved()[source]

Returns the total amount of memory currently managed by the memory pool.

Note

  • For the CPU backend, 0 is always returned.

Returns

int, in Byte.

Examples

>>> import mindspore as ms
>>> import numpy as np
>>> from mindspore import Tensor, ops
>>> ms.set_device("Ascend", 0)
>>> a = Tensor(np.ones([1, 2]), ms.float32)
>>> b = Tensor(np.ones([1, 2]), ms.float32)
>>> c = ops.add(a, b).asnumpy()
>>> print(ms.runtime.memory_reserved())
1073741824