Search All of the Math Forum:
Views expressed in these public forums are not endorsed by
Drexel University or The Math Forum.
|
|
|
|
Re: integer Vs floating point efficiency?
Posted:
Dec 4, 2012 9:24 AM
|
|
On 2012-12-04 09:58:05 -0400, Rui Maciel said:
> Gordon Sande wrote: > >> Micro optimization is rarely of great importance as the effects of >> large scale algorithm >> issues dominate in virtually all situations. If you had one of the >> situations where >> instruction timing was an issue you probaly would not have asked the >> question. Is the old >> story of the price of yachts. If you have to ask then you probably can >> not afford one! > > This isn't a micro optimization issue. The reason why it's necessary to > understand the relative efficiency of certain data types is to be able to > make adequade decisions regarding how certain algorithms are implemented. > > Instruction latency, in this context, is only important to get an estimate > of the cost of using specific numerical data types, because if you know > beforehand that implementing an algorithm as algorithm<double>() is > significantly more or less efficient than implementing it instead as > algorithm<long int>(), you will be able to choose the best way to implement > it. > > So, it isn't a micro optimization issue. It's instead a best practices > issue.
Which is why it is unfortunate that you chose to snip the parts about memory usage and costs. That is often the most important part of modern good practices. It used to be that memory was limited and fast but now it is abundent and of varying degress of slowness. That tends to change processor issues into micro optimization issues.
> Rui Maciel
|
|
|
|