Slicer4:QtPort/FunFacts

From Slicer Wiki
Revision as of 00:59, 1 October 2011 by Finetjul (talk | contribs)
Jump to: navigation, search
Home < Slicer4:QtPort < FunFacts

Slicer 4 vs Slicer 3

  • Time to compile MRML in Slicer3 (gcc, 1 proc., Ubuntu 64b):
    • real: 4m50s
    • user: 3m51s
    • sys: 0m40s
  • Time to compile MRML in Slicer3 (Visual Studio 2008, Release):
    • 6m20s
  • Time to compile MRML in Slicer4 (gcc, 1 proc., Ubuntu 64b):
    • real: 2m11s(2m39s or 2x faster)
    • user: 1m51s(2m00s or 2x faster)
    • sys: 0m22s(0m18s or 2x faster)
  • Time to compile MRML in Slicer4 (Visual Studio 2008, Release):
    • 4m40s (2m20s or 1.5x faster)
  • Time to compile Slicer4 (gcc, 1 proc., Ubuntu 64b):
    • real: 52m24s
    • user: 46m29s
    • sys: 6m38s

Number of lines per author in Slicer 4

  • As of 2011 Sept 30:
 60665 finetjul
 48498 pieper
 47376 jcfr
 41902 haehn
 37846 clisle
 26534 tokuda
 19326 hjohnson
 16278 jvs
 12174 naucoin
  9515 pohl
  8701 fedorov
  7868 aylward
  7103 alexy
  6596 casey.goodlett
  6208 millerjv
  6004 lorensen
  5503 blezek
  4138 sylvain
  3195 atriveg 
  3067 wjp@bwh.harvard.edu
  2818 kquintus
  2726 inorton
  2312 barre
  2298 demian
  1926 lantiga
  1840 nicky
  1769 ygao    
  1456 ibanez
  1372 vmagnotta
   893 benjamin.long
   672 hliu
   587 pkarasev
   570 rjosest 
   518 kedar_p
   511 dpace 
   409 partyd
   381 lauren
   369 lassoan 
   328 harveerar
   313 johan.andruejol
   265 taox   
   244 kerstin
   222 zach.mullen
   216 andy
   175 bess    
   154 vrnova 
   143 awiles
   122 tringo
    85 tgl
    64 domibel
    50 freudling
    49 padfield
    47 taylor
    39 ilknur.kabul
    25 jcross186
    13 FeiZhao            
     9 hayes 
     9 davisb  
     7 karthik            
     3 malaterre
     2 maddah             
     1 yumin              
     1 matthew.bowman

Script used to count:

git ls-files | egrep -v \.'png|gif|vtk|stl|jpeg|jpg|ico|nrrd|dcm|xml|gz|md5|nhdr|log|mrml|mha|s3ext|s4ext|raw|html|dox|mhd|pack|vtp|am|nii|JPG|exe|db|zip|svg|img|cache|kit|hdr' | grep -v weave | grep -v tclkit-darwin-univ | grep -v Slicer3Launchers | grep -v tclkits | xargs -n1 -d'\n' -i git blame {} | perl -n -e '/\s\((.*?)\s[0-9]{4}/ && print "$1\n"' | sort -f | uniq -c -w3 | sort -r