diff --git a/entrypoint.sh b/entrypoint.sh index 1d848ba..6c2e2fd 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -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"\ diff --git a/generate_wiki_pages.py b/generate_wiki_pages.py index 83844c0..0091faa 100644 --- a/generate_wiki_pages.py +++ b/generate_wiki_pages.py @@ -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" )