Algorithm Complexity
-
True, but I've seen similar statistics for using different programming languages and OS's and hardware. They just list as many different configurations as possible. Oh well, we'll modify our count slightly for the sqrt. Thanks.
"There are II kinds of people in the world, those who understand binary and those who understand Roman numerals." - Bassam Abdul-Baki Web - Blog - RSS - Math - LinkedIn - BM
Bassam Abdul-Baki wrote:
True, but I've seen similar statistics for using different programming languages and OS's and hardware. They just list as many different configurations as possible. Oh well, we'll modify our count slightly for the sqrt. Thanks.
except that the one "extra" function that breaks the cache is more expensive than anything else. Knowing that is what the profilers are designed to help you with. Counting up the operations often leads you to think something is better than it really is. You can't divorce yourself from the architecture, only cooperate with it. When you try and put "all the options" on the table, there are too many to count.
_________________________ Asu no koto o ieba, tenjo de nezumi ga warau. Talk about things of tomorrow and the mice in the ceiling laugh. (Japanese Proverb)
-
Well then the solution is obvious. Just make up whatever numbers you want, and come up with a heinously complex algebraic "formula" that looks powerful, but is in fact meaningless. I'm pretty sure the Fed and the Stock Market have been getting away with this for years :)
¡El diablo está en mis pantalones! ¡Mire, mire! Real Mentats use only 100% pure, unfooled around with Sapho Juice(tm)! SELECT * FROM User WHERE Clue > 0 0 rows returned Save an Orange - Use the VCF! VCF Blog
-
Hate to display my ignorance, but just where is this
Marc Clifton wrote:
"search forum" link
you refer too.
Chris Meech I am Canadian. [heard in a local bar] Donate to help Conquer Cancer[^]
I'm not positive if this is what Marc was referring to or not, but there's one near the top of the page on the right-hand side. There's a little magnifying glass and the words "Search comments" which is a link. If you click it from the Lounge, you can search the Lounge by author or subject. BDF
-
Hate to display my ignorance, but just where is this
Marc Clifton wrote:
"search forum" link
you refer too.
Chris Meech I am Canadian. [heard in a local bar] Donate to help Conquer Cancer[^]
Chris Meech wrote:
Hate to display my ignorance, but just where is this
No problem, it isn't very obvious to me. You know where the "first, prev, next" links are for navigating the forum? Go up two lines and there's a magnifying glass with a link titled "search comments" to the left of the Set Options button. That should probably go into the WTF for bad UI design. Marc
-
Chris Meech wrote:
Hate to display my ignorance, but just where is this
No problem, it isn't very obvious to me. You know where the "first, prev, next" links are for navigating the forum? Go up two lines and there's a magnifying glass with a link titled "search comments" to the left of the Set Options button. That should probably go into the WTF for bad UI design. Marc
Thank you Marc. I had never noticed that before. Even odder I guess is that when you go to advanced search, the Lounge is not listed, but yet apparently it can be searched. That's a :wtf: to me. Thanks. :)
Chris Meech I am Canadian. [heard in a local bar] Donate to help Conquer Cancer[^]
-
I'm not positive if this is what Marc was referring to or not, but there's one near the top of the page on the right-hand side. There's a little magnifying glass and the words "Search comments" which is a link. If you click it from the Lounge, you can search the Lounge by author or subject. BDF
Thanks, Big Daddy. :) Say did you ever meet the 'real' Big Daddy[^]. :)
Chris Meech I am Canadian. [heard in a local bar] Donate to help Conquer Cancer[^]
-
Thanks, Big Daddy. :) Say did you ever meet the 'real' Big Daddy[^]. :)
Chris Meech I am Canadian. [heard in a local bar] Donate to help Conquer Cancer[^]
Chris Meech wrote:
meet the 'real' Big Daddy
No, sadly, I have not. But if I'm ever in Ocala, I'll be sure to stop at his museum. Thanks for the link. BDF
-
Thank you Marc. I had never noticed that before. Even odder I guess is that when you go to advanced search, the Lounge is not listed, but yet apparently it can be searched. That's a :wtf: to me. Thanks. :)
Chris Meech I am Canadian. [heard in a local bar] Donate to help Conquer Cancer[^]
-
Well then the solution is obvious. Just make up whatever numbers you want, and come up with a heinously complex algebraic "formula" that looks powerful, but is in fact meaningless. I'm pretty sure the Fed and the Stock Market have been getting away with this for years :)
¡El diablo está en mis pantalones! ¡Mire, mire! Real Mentats use only 100% pure, unfooled around with Sapho Juice(tm)! SELECT * FROM User WHERE Clue > 0 0 rows returned Save an Orange - Use the VCF! VCF Blog
-
Bassam Abdul-Baki wrote:
Actually, the search engine has improved drastically as of late.
Fun with semantics: X has improved dramatically Y's new management has drastically affected programmer performance Or, the stock market went up dramatically today vs. the stock market took a drastic turn for the worse today. Anyways, I'm not taking pot shots or trying to be holier than thou or anything like that. It's simply that I was struck by the use of the word "drastic" as a modifier to "improved" and was thinking (if you can call it that) out loud in a meandering way. Marc
-
Bassam Abdul-Baki wrote:
True, but I've seen similar statistics for using different programming languages and OS's and hardware. They just list as many different configurations as possible. Oh well, we'll modify our count slightly for the sqrt. Thanks.
except that the one "extra" function that breaks the cache is more expensive than anything else. Knowing that is what the profilers are designed to help you with. Counting up the operations often leads you to think something is better than it really is. You can't divorce yourself from the architecture, only cooperate with it. When you try and put "all the options" on the table, there are too many to count.
_________________________ Asu no koto o ieba, tenjo de nezumi ga warau. Talk about things of tomorrow and the mice in the ceiling laugh. (Japanese Proverb)
-
Bassam Abdul-Baki wrote:
Actually, the search engine has improved drastically as of late.
Fun with semantics: X has improved dramatically Y's new management has drastically affected programmer performance Or, the stock market went up dramatically today vs. the stock market took a drastic turn for the worse today. Anyways, I'm not taking pot shots or trying to be holier than thou or anything like that. It's simply that I was struck by the use of the word "drastic" as a modifier to "improved" and was thinking (if you can call it that) out loud in a meandering way. Marc
That's true. However, if you'd used the search engine before, you'd know it timed out more often than not. Thus, any improvement is a drastic improvement. Is it me or is the word meandering abused in this forum? :-D
"I know which side I want to win regardless of how many wrongs they have to commit to achieve it." - Stan Shannon Web - Blog - RSS - Math - LinkedIn - BM
-
Hi, maybe there is a way in between: Count the calls to non-trivial functions like trigonometrical ones in each algorithm and then time some iterations with only one of these calls so you can get an estimate on the weight of each of those function calls. This way you might not get a result like "A has O(n^2) and B has O(3n^2)" but "A's complexity is significantly higher than B's" or "both algorithms are about equal in complexity". Maybe put some tech talk on top of it noting that real-life complexity depends on platform used etc. :-)
-
Understanding the question is half the answer. Make sure that you understand the same thing as your boss does when you say "alghorithm complexity". Honestly, for me alghorithm complexity and code complexity are about the same thing(semantically speaking) since alghorithms are the things that are coded. Now the question is what exactly do you mean by "complexity". if you are intrested in performance, you should check http://en.wikipedia.org/wiki/Big_O_notation[^] otherwise if you should chose some metrics based on what you are looking for. Things like is 1+1+1 more complex that 1+2 or just the same. Well, good luck!
Alex C. D.
-
Is there a known method for comparing different algorithms? What we're looking for is a way to assign weights to different operands (+,-,*,/) and functions (sin,cos,tan,cot,sqrt) and see how they compare to each other. Is anyone aware of such a method? Thanks
"Religion is assurance in numbers." - Bassam Abdul-Baki Web - Blog - RSS - Math - LinkedIn - BM
Look at the weights assigned to those functions (hopefully they are instristic) in an open source compilers. I cant recall specific names now, but it has something to do with Selectors and file names with a .sel extension. There should be one or more for each output arch. My guess, it should be fine tuned on the lowest level, so you should get the 'exact' number of CPU cycles it take to perform such a function. That said, good luck :)
xacc.ide
The rule of three: "The first time you notice something that might repeat, don't generalize it. The second time the situation occurs, develop in a similar fashion -- possibly even copy/paste -- but don't generalize yet. On the third time, look to generalize the approach." -
Right. You're supposed to tell them that you used the same arcane algorithm they use to calculate the time you need to finish a project.
--------------- don't P A N I C
-
Well then the solution is obvious. Just make up whatever numbers you want, and come up with a heinously complex algebraic "formula" that looks powerful, but is in fact meaningless. I'm pretty sure the Fed and the Stock Market have been getting away with this for years :)
¡El diablo está en mis pantalones! ¡Mire, mire! Real Mentats use only 100% pure, unfooled around with Sapho Juice(tm)! SELECT * FROM User WHERE Clue > 0 0 rows returned Save an Orange - Use the VCF! VCF Blog
Like the stock fund that got reamed a few months ago when the market did something that it's controlling formulas said was 36 standard deviations away from the most likely result.
-- If you view money as inherently evil, I view it as my duty to assist in making you more virtuous.
-
Well, the complex functions all boil down to a power series. Power series are composed of, guess what, add subtract, multiply, divide. Computational multiply and divide are composed of, guess what, add and subtract. Subtract is, guess what, add with negation. Add is the baseline and all the rest can be derived as multiples of add.
-
Shog9 wrote:
So you'd actually halve the score of your algorithm by throwing in an extra add?
How so? It would just be XM™ + 0.5M.
Shog9 wrote:
And yeah, 4x for sine/cosine sounds really, really low.
Yeah, I argued that with him from the very beginning since they are Taylor serieseses.
"It is the mark of an educated mind to be able to entertain a thought without accepting it." - Aristotle Web - Blog - RSS - Math - LinkedIn - BM
Bassam Abdul-Baki wrote:
since they are Taylor serieseses
Do you really think sin/cos/tan are computed using Taylor series? That would take forever, as it would be difficult to get the least significant bits (almost) right (which your algorithm may not need, but a general-purpose trig function should try to accomplish). For one, there are much better formulas to get the result for smaller ranges of values, so a decent software approach would select the right formula (not a real Taylor series!), depending on input. On the other hand, modern CPUs have instructions that perform trig operations; their performance is anywhere between 10 and 300 times slower than multiply. As a first rule of thumb: if your set of formulas includes trigs, that iss the only thing you should count, forget all additions, multiplicationd, divisions, just count trigs. The next performance improvement would be to look for: 1. sin-cos pairs; some implementations can do both at the same time, at no extra cost. That does not mean your high-level language will get the second one for free though. 2. mathematical transformations that reduce the number of independent trig functions; e.g. if you already calculated sin(a) and sin(b), then sin(a+b) can be calculated from those. BTW: if your proposal would include "sin/cos costs as much as 4 multiplies" then I am afraid I would not be impressed. I strongly suggest you do some experiment to at least improve that one coefficient. :)
Luc Pattyn [Forum Guidelines] [My Articles]
this months tips: - use PRE tags to preserve formatting when showing multi-line code snippets - before you ask a question here, search CodeProject, then Google
-
Bassam Abdul-Baki wrote:
since they are Taylor serieseses
Do you really think sin/cos/tan are computed using Taylor series? That would take forever, as it would be difficult to get the least significant bits (almost) right (which your algorithm may not need, but a general-purpose trig function should try to accomplish). For one, there are much better formulas to get the result for smaller ranges of values, so a decent software approach would select the right formula (not a real Taylor series!), depending on input. On the other hand, modern CPUs have instructions that perform trig operations; their performance is anywhere between 10 and 300 times slower than multiply. As a first rule of thumb: if your set of formulas includes trigs, that iss the only thing you should count, forget all additions, multiplicationd, divisions, just count trigs. The next performance improvement would be to look for: 1. sin-cos pairs; some implementations can do both at the same time, at no extra cost. That does not mean your high-level language will get the second one for free though. 2. mathematical transformations that reduce the number of independent trig functions; e.g. if you already calculated sin(a) and sin(b), then sin(a+b) can be calculated from those. BTW: if your proposal would include "sin/cos costs as much as 4 multiplies" then I am afraid I would not be impressed. I strongly suggest you do some experiment to at least improve that one coefficient. :)
Luc Pattyn [Forum Guidelines] [My Articles]
this months tips: - use PRE tags to preserve formatting when showing multi-line code snippets - before you ask a question here, search CodeProject, then Google
I agree that once you know sin, cos, tan and cot should be relatively quicker. However, the only reason we assumed Taylor series is we don't know which methods it uses and we don't have the OS in which this will finally be tested/installed on, and we're not sure about which compiler. We were hoping for something quick and dirty without having to test run these algorithms since this request was added at the last minute. I agree with your suggestion that since the +-*/ are an order of magnitude less than trigs, they could, for our estimations, be ignored. Let me see if that idea will pass around here since we're very close on closing this thing. Thanks.
"Science removes the con from your conscience." - Bassam Abdul-Baki Web - Blog - RSS - Math - LinkedIn - BM