Measurement Studio for VC++

cancel
Showing results for 
Search instead for 
Did you mean: 

Increasing the performance of CNiVector<...> (answered my own question, thought someone else might benefit from it)

If you use a straight forward loop to manipulate a CNiVector you end up using the overloaded [] operator - which peroforms bounds checking on every access. This is fine & dandy for VB applications, but these are suppose to be C++ tools! I first tried using the non-aggregrate functions ( overloaded +=) but they are not optimimally implemented. /Very/ far from it - actually they are _worse than using your own loop with the overloaded []! My program spends considerable time adding these vectors together, and it was taking an absurdly long time to do it with the provided methods.

If you're adding or otherwise manipulating CNiVectors, you
can increase the performance of the calculations SIXTEEN FOLD by using code similar to the following:

The code replaced was:

[source]
//272000 CPU Ticks
m_vDest += m_vSource;
[/source]



[source]
//17000 CPU Ticks

double* pdDest = m_vDest;
const double* pdStop = &m_vDest[n-1]; pdStop++; //don't ask I might explode - trust me that it's correct.
const double* pdSource = m_vSource[j];
for(; pdDest {
*pdDest += *pdSource;
pdSource++;
}
[/source]

Both m_vDest and m_vSource are CNiReal64Vectors. I would expect similar performance increases for all the other vector types.

Ticks are from a PIII 700MHz (though the speed shouldn't matter, but the CPU type will - retrieved using RDTSC)
0 Kudos
Message 1 of 2
(3,447 Views)
Thank you for the excellent feedback on the vector. You are correct that the reason that operator+= takes longer than expected is that it does bounds checking on each access. This is something that we certainly can optimize. We will look into enhancing the performance of the vector and matrix classes in the upcoming release of Measurement Studio.

Please keep sending the feedback our way.

David Rohacek
Group Manager
Measurement Studio for Visual C++
0 Kudos
Message 2 of 2
(3,447 Views)