When packaging sage 8.6, I noticed that startup felt unusually fast. So I 
averaged the startup time over 100 runs:

```
for i in {1..100}; do
"sage-8.5/bin/sage" --startuptime | grep 'Total time' | awk '{ print $7 }' 
>> 8.6.log
"sage-8.6/bin/sage" --startuptime | grep 'Total time' | awk '{ print $7 }' 
>> 8.5.log
echo "$i"
done
echo "8.5:"
cat 8.5.log | awk '{ sum += $1; n++ } END { print sum / n; }'
echo "8.6:"
cat 8.6.log | awk '{ sum += $1; n++ } END { print sum / n; }'
```

Result:
8.5: 751.77ms
8.6: 1033.39ms

Thats 1/3rd improvement! Thanks to whoever is responsible for this.

-- 
You received this message because you are subscribed to the Google Groups 
"sage-devel" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sage-devel+unsubscr...@googlegroups.com.
To post to this group, send email to sage-devel@googlegroups.com.
Visit this group at https://groups.google.com/group/sage-devel.
For more options, visit https://groups.google.com/d/optout.

Reply via email to