I have two computers I work with. One is a desktop with Core two duo. The other is a laptop with an i7 processor. Both have 8+ gigs of ram. The one main difference is that the desktop has a raptor hard drive (10000 rpm).
Now my question is why the dual core is faster at calculating than the i7. Could this be just because of the hard drive? All 8 cores are used in the i7. What are the biggest differences when it comes to hardware and performance?
This is the code I am using minus a couple little if statements. This calculates about 13000 rows. It takes about 15 minutes.
Now my question is why the dual core is faster at calculating than the i7. Could this be just because of the hard drive? All 8 cores are used in the i7. What are the biggest differences when it comes to hardware and performance?
PHP:
=IF(SUMIF(A$1:A1,A1,B$1:B1)=Y2,0,IF(OR(B2<0,SUMIF(A$1:A1,A2,B$1:B1)<Y2),MIN(B2,Y2,Y2-SUMIF(A$1:A1,A2,AB$1:AB1)),0))
This is the code I am using minus a couple little if statements. This calculates about 13000 rows. It takes about 15 minutes.