Skip to content

Commit

Permalink
Merge pull request #16 from DARMA-tasking/15-remove-total-allocated-mem
Browse files Browse the repository at this point in the history
#15: Remove total allocated memory from wiki page
  • Loading branch information
JacobDomagala authored May 18, 2022
2 parents bcfaa6f + a839b57 commit 728bc49
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 7 deletions.
5 changes: 0 additions & 5 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -80,11 +80,6 @@ do
"$GITHUB_WORKSPACE/FlameGraph/flamegraph.pl" --title="jacobi2d_vt node:$node_num number of allocations"\
--width=1920 --colors mem --countname allocations < "alloc_count_$file_name" > "flame_heaptrack_jacobi_alloc_count_$node_num.svg"

# size of allocations
heaptrack_print -f "$file" -F "alloc_size_$file_name" --flamegraph-cost-type allocated
"$GITHUB_WORKSPACE/FlameGraph/flamegraph.pl" --title="jacobi2d_vt node:$node_num number of bytes allocated"\
--width=1920 --colors mem --countname bytes < "alloc_size_$file_name" > "flame_heaptrack_jacobi_alloc_size_$node_num.svg"

# leaked
heaptrack_print -f "$file" -F "leaked_$file_name" --flamegraph-cost-type leaked
"$GITHUB_WORKSPACE/FlameGraph/flamegraph.pl" --title="jacobi2d_vt node:$node_num number of bytes leaked"\
Expand Down
2 changes: 0 additions & 2 deletions generate_wiki_pages.py
Original file line number Diff line number Diff line change
Expand Up @@ -404,11 +404,9 @@ def create_md_perf_page():
"[Flamegraph](https://github.com/brendangregg/FlameGraph)\n"
"## jacobi2d_vt node: 0\n"
f"{create_image_hyperlink(f'{perf_test_url}flame_heaptrack_jacobi_alloc_count_0.svg')}\n"
f"{create_image_hyperlink(f'{perf_test_url}flame_heaptrack_jacobi_alloc_size_0.svg')}\n"
f"{create_image_hyperlink(f'{perf_test_url}flame_heaptrack_jacobi_leaked_0.svg')}\n"
"## jacobi2d_vt node: 1\n"
f"{create_image_hyperlink(f'{perf_test_url}flame_heaptrack_jacobi_alloc_count_1.svg')}\n"
f"{create_image_hyperlink(f'{perf_test_url}flame_heaptrack_jacobi_alloc_size_1.svg')}\n"
f"{create_image_hyperlink(f'{perf_test_url}flame_heaptrack_jacobi_leaked_1.svg')}\n"
)

Expand Down

0 comments on commit 728bc49

Please sign in to comment.