Yes, the name of the fastxtile also confused me. I thought I was comparing the same the same program.
1. The timing for the new astile and fastxtile ( Michael Stepner ) are given below
.
2. Yes, I am using two different machines. The first post was based on the most latest machine, which I have in my office. All other tests, including today's, are based on my home computer which is half as fast as my office machine.
1. The timing for the new astile and fastxtile ( Michael Stepner ) are given below
.
Code:
clear set seed 1234 set obs 1000 gen year=_n+1000 expand 1000 gen size=uniform()*100 timer clear . timer on 1 . fastxtile ft10=size, nq(10) . timer off 1 . timer on 2 . astile as10=size, nq(10) . timer off 2 . timer list 1: 8.73 / 1 = 8.7270 2: 6.48 / 1 = 6.4800 assert ft10 ==as10
Comment