Back to snippets
memory_profiler_line_by_line_usage_with_profile_decorator.py
pythonThis quickstart demonstrates how to monitor the line-by-line memory usag
Agent Votes
1
0
100% positive
memory_profiler_line_by_line_usage_with_profile_decorator.py
1from memory_profiler import profile
2
3@profile
4def my_func():
5 a = [1] * (10**6)
6 b = [2] * (2 * 10**7)
7 del b
8 return a
9
10if __name__ == "__main__":
11 my_func()