summaryrefslogtreecommitdiff
path: root/test/perf
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2010-12-18 12:14:23 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2010-12-18 12:14:23 -0500
commit182fc1a7c6fcb39593fed982b3e40de59712ec99 (patch)
tree355cd8834878f7155eb0ea7c97b27b275f560c2a /test/perf
parent2e7a54d6fbfe9260887a0eb848e296e3b5e59c47 (diff)
downloadsqlalchemy-182fc1a7c6fcb39593fed982b3e40de59712ec99.tar.gz
- some good inlinings to the whole cascade_iterator() thing.
cascade_iterator() should probably not yield the "instance" at all and only deal in states. 30-40K methods taken off the orm2010 test.
Diffstat (limited to 'test/perf')
-rw-r--r--test/perf/orm2010.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/perf/orm2010.py b/test/perf/orm2010.py
index 8cdf774ae..46703b6da 100644
--- a/test/perf/orm2010.py
+++ b/test/perf/orm2010.py
@@ -151,6 +151,7 @@ counts_by_methname = dict((key[2], stats.stats[key][0]) for key in stats.stats)
print "SQLA Version: %s" % __version__
print "Total calls %d" % stats.total_calls
+print "Total cpu seconds: %.2f" % stats.total_tt
print 'Total execute calls: %d' \
% counts_by_methname["<method 'execute' of 'sqlite3.Cursor' "
"objects>"]