Hi everyone,
I just upgraded to Stata/MP 18, and I present here the comparison in performance between Stata/MP 17 vs. 18, 4 core license.
My computer:
I just upgraded to Stata/MP 18, and I present here the comparison in performance between Stata/MP 17 vs. 18, 4 core license.
My computer:
- Apple silicon M1 (Total Number of Cores: 8 [4 performance {3220 MHz} and 4 efficiency {2064 MHz}])
- Memory (RAM: 16 GB; and 1 TB hard disk).
- I used the code from this post on Statalist.
- Stata/MP 18 seems slower than Stata/MP 17, Am I right?
Code:
set processors 1 The maximum number of processors or cores being used is changed from 4 to 1. It can be set to any number between 1 and 4
- Stata/MP 17
Code:. tabstat replace regress predict correl bootstrap mvtest xtile expand_drop arfima eigenv , stats(median mean sd min max) columns(s) Variable | p50 Mean SD Min Max -------------+-------------------------------------------------- replace | .012 .0124 .0005164 .012 .013 regress | .0705 .0704 .0006992 .069 .071 predict | .021 .0214 .001075 .02 .024 correl | .056 .0577 .0064472 .055 .076 bootstrap | 6.5075 6.513 .0452769 6.46 6.598 mvtest | .187 .186 .0048305 .173 .191 xtile | .433 .4309 .0153076 .391 .445 expand_drop | .0415 .0421 .002331 .039 .046 arfima | 104.1265 305.3392 636.4154 103.715 2116.609 eigenv | .214 .2142 .0013166 .211 .216 ----------------------------------------------------------------
- Stata/MP 18
Using four coresCode:. tabstat replace regress predict correl bootstrap mvtest xtile expand_drop arfima eigenv , stats(median mean sd min max) columns(s) Variable | p50 Mean SD Min Max -------------+-------------------------------------------------- replace | .014 .0143 .0014181 .013 .018 regress | .086 .0881 .0049542 .085 .101 predict | .024 .0241 .0007379 .023 .025 correl | .066 .0661 .0007379 .065 .067 bootstrap | 7.286 7.3156 .1050039 7.218 7.594 mvtest | .1855 .1819 .0146322 .165 .197 xtile | .4445 .4405 .034394 .399 .481 expand_drop | .042 .0419 .0011972 .041 .045 arfima | 137.8045 142.1306 16.53265 132.644 188.13 eigenv | .214 .2142 .0006325 .213 .215 ----------------------------------------------------------------
Code:
set processors 4 The maximum number of processors or cores being used is changed from 1 to 4. It can be set to any number between 1 and 4
- Stata/MP 17
Code:. tabstat replace regress predict correl bootstrap mvtest xtile expand_drop arfima eigenv , stats(median mean sd min max) columns(s) Variable | p50 Mean SD Min Max -------------+-------------------------------------------------- replace | .003 .0033 .0013375 .002 .007 regress | .019 .0192 .0009189 .018 .021 predict | .006 .006 .0008165 .005 .008 correl | .011 .0119 .0021833 .011 .018 bootstrap | 3.97 3.9837 .0408223 3.941 4.064 mvtest | .065 .0659 .0015951 .064 .069 xtile | .321 .3209 .0088122 .299 .333 expand_drop | .041 .0408 .0006325 .04 .042 arfima | 86.532 86.7834 .9220214 85.671 88.297 eigenv | .212 .2126 .0017764 .211 .217 ----------------------------------------------------------------
- Stata/MP 18
Code:. tabstat replace regress predict correl bootstrap mvtest xtile expand_drop arfima eigenv , stats(median mean sd min max) columns(s) Variable | p50 Mean SD Min Max -------------+-------------------------------------------------- replace | .003 .003 0 .003 .003 regress | .024 .0241 .0003162 .024 .025 predict | .007 .0073 .0006749 .007 .009 correl | .015 .0153 .0013375 .014 .019 bootstrap | 4.283 4.346 .1862484 4.225 4.854 mvtest | .0685 .0645 .0070435 .055 .071 xtile | .3275 .3214 .0185784 .294 .342 expand_drop | .041 .041 .0010541 .039 .043 arfima | 118.605 118.6945 .4226059 118.274 119.682 eigenv | .213 .2143 .003401 .212 .221 ----------------------------------------------------------------
Comment