You will be be redirected to the blog in a moment...

Or you can click the link below to proceed:
Why experience counts..

Just an add on to the previous post, still remember the superstar project manager that I had? Well for the SSE project we did encountered one error, all the team members was not able to solve it, we kept getting the dreaded "illegal operations" error and none too friendly information..The project manager was able to come save the day, he went through the memory dump (a skill which till this very day something that I've still not mastered), analyzed it and was able to solve the problem.SSE requires allocated memory in chunks of 16bits, while the MS VC compiler defaults to 8 bits. So the project manager changed the allocator.h and changed the default to 16 bits.//change memory allocation to be in 16 bitspointer allocate(size_type n, const void *){ return((pointer)_mm_malloc(n * sizeof(T), 16)); }It was really an eye opener for me as,1. He had the skills to go through the memory dump.2. He had enough knowledge of how the MS VC compiler work to know where to look for the location to fix.3. He was more tha

 

Want to be redirected immediately?
Register yourself at Ping.sg to get rid of this page and also to get your read counted as Pong.