Skip to content

Commit a0f81e5

Browse files
authored
Add peak_bytes_used to the get_memory_info (#8265)
1 parent 32afdbb commit a0f81e5

File tree

5 files changed

+5
-1
lines changed

5 files changed

+5
-1
lines changed

test/pjrt/test_runtime_tpu.py

+1
Original file line numberDiff line numberDiff line change
@@ -259,6 +259,7 @@ def test_memory_usage(self):
259259
for usage in results.values():
260260
self.assertIn('bytes_used', usage)
261261
self.assertIn('bytes_limit', usage)
262+
self.assertIn('peak_bytes_used', usage)
262263

263264

264265
if __name__ == '__main__':

torch_xla/core/xla_model.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1542,7 +1542,7 @@ def get_memory_info(device: Optional[torch.device] = None) -> MemoryInfo:
15421542
Example:
15431543
15441544
>>> xm.get_memory_info()
1545-
{'bytes_used': 290816, 'bytes_limit': 34088157184}
1545+
{'bytes_used': 290816, 'bytes_limit': 34088157184, 'peak_bytes_used': 500816}
15461546
"""
15471547
if device == None:
15481548
device = xla_device()

torch_xla/csrc/init_python_bindings.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -825,6 +825,7 @@ py::dict GetMemoryInfo(const std::string& device_str) {
825825
auto py_dict = py::dict();
826826
py_dict["bytes_used"] = mem_info.bytes_used;
827827
py_dict["bytes_limit"] = mem_info.bytes_limit;
828+
py_dict["peak_bytes_used"] = mem_info.peak_bytes_used;
828829
return py_dict;
829830
}
830831

torch_xla/csrc/runtime/computation_client.h

+1
Original file line numberDiff line numberDiff line change
@@ -255,6 +255,7 @@ class ComputationClient {
255255
struct MemoryInfo {
256256
int64_t bytes_used = 0;
257257
int64_t bytes_limit = 0;
258+
int64_t peak_bytes_used = 0;
258259
};
259260

260261
virtual ~ComputationClient() {}

torch_xla/csrc/runtime/pjrt_computation_client.cc

+1
Original file line numberDiff line numberDiff line change
@@ -991,6 +991,7 @@ ComputationClient::MemoryInfo PjRtComputationClient::GetMemoryInfo(
991991
return {
992992
stats.bytes_in_use,
993993
*stats.bytes_limit,
994+
stats.peak_bytes_in_use,
994995
};
995996
}
996997

0 commit comments

Comments
 (0)