From 638afaeb314cdf14680d7053d35c3a0a797ea13f Mon Sep 17 00:00:00 2001 From: Matt Guthaus Date: Mon, 25 Feb 2019 10:14:02 -0800 Subject: [PATCH] Remove duplicate profile stats script --- compiler/profile_stats.py | 5 ----- 1 file changed, 5 deletions(-) delete mode 100755 compiler/profile_stats.py diff --git a/compiler/profile_stats.py b/compiler/profile_stats.py deleted file mode 100755 index d3c33801..00000000 --- a/compiler/profile_stats.py +++ /dev/null @@ -1,5 +0,0 @@ -import pstats -p = pstats.Stats('profile.dat') -p.strip_dirs() -p.sort_stats('cumulative') -p.print_stats(50)