Clan x86

Technical (Development, Security, etc.) => General Programming => Topic started by: Sidoh on March 05, 2009, 11:01:32 AM

Title: Runtime Analysis.... kind of.
Post by: Sidoh on March 05, 2009, 11:01:32 AM
Quote from: iago on March 05, 2009, 10:53:26 AM
Quote from: MyndFyre on March 05, 2009, 10:13:03 AM
Quote from: nslay on March 05, 2009, 10:04:41 AM
Why in the world are you using a spin lock here?  I sure hope lock contention is low or the critical section is trivial.
I would guess it's for school.  (I had much worse assignments in my operating systems class).
Yeah, same. It's to learn how the stuff works, not how to use things properly. It's the same as the old "implement a bubble sort" thing.

Bubble sort is hardcore, but it's not quite as badass as stooge sort.  It has O(n^( log(3) / log(1.5) )), which is O(2.709...) running time! :D

MyndFyre edit: changed the title
Title: Re: Semaphores using pthreads
Post by: iago on March 05, 2009, 11:56:24 AM
Quote from: Sidoh on March 05, 2009, 11:01:32 AM
Quote from: iago on March 05, 2009, 10:53:26 AM
Quote from: MyndFyre on March 05, 2009, 10:13:03 AM
Quote from: nslay on March 05, 2009, 10:04:41 AM
Why in the world are you using a spin lock here?  I sure hope lock contention is low or the critical section is trivial.
I would guess it's for school.  (I had much worse assignments in my operating systems class).
Yeah, same. It's to learn how the stuff works, not how to use things properly. It's the same as the old "implement a bubble sort" thing.

Bubble sort is hardcore, but it's not quite as badass as stooge sort.  It has O(n^( log(3) / log(1.5) )), which is O(2.709...) running time! :D

Nothing beats garbage sort. I don't know what the order is, but the algorithm is:

garbage_sort(list)
{
  while(!is_sorted(list))
  {
    shuffle(list)
  }
}

(My friend's algorithm, not mine :) )
Title: Re: Semaphores using pthreads
Post by: Sidoh on March 05, 2009, 05:35:41 PM
Quote from: iago on March 05, 2009, 11:56:24 AM
Quote from: Sidoh on March 05, 2009, 11:01:32 AM
Quote from: iago on March 05, 2009, 10:53:26 AM
Quote from: MyndFyre on March 05, 2009, 10:13:03 AM
Quote from: nslay on March 05, 2009, 10:04:41 AM
Why in the world are you using a spin lock here?  I sure hope lock contention is low or the critical section is trivial.
I would guess it's for school.  (I had much worse assignments in my operating systems class).
Yeah, same. It's to learn how the stuff works, not how to use things properly. It's the same as the old "implement a bubble sort" thing.

Bubble sort is hardcore, but it's not quite as badass as stooge sort.  It has O(n^( log(3) / log(1.5) )), which is O(2.709...) running time! :D

Nothing beats garbage sort. I don't know what the order is, but the algorithm is:

garbage_sort(list)
{
  while(!is_sorted(list))
  {
    shuffle(list)
  }
}

(My friend's algorithm, not mine :) )

Haha, yeah.  Well, the search space is O(n^n) (n^n is \Theta(n!)).  Since it's stochastic, there really isn't an order.  You could analyze the expected run time, but there is no "worst" case.  For any proposed finite worst case (i.e., n^n iterations), you could still do worse if you're unlucky.
Title: Re: Semaphores using pthreads
Post by: iago on March 05, 2009, 05:51:31 PM
Quote from: Sidoh on March 05, 2009, 05:35:41 PM
Quote from: iago on March 05, 2009, 11:56:24 AM
Quote from: Sidoh on March 05, 2009, 11:01:32 AM
Quote from: iago on March 05, 2009, 10:53:26 AM
Quote from: MyndFyre on March 05, 2009, 10:13:03 AM
Quote from: nslay on March 05, 2009, 10:04:41 AM
Why in the world are you using a spin lock here?  I sure hope lock contention is low or the critical section is trivial.
I would guess it's for school.  (I had much worse assignments in my operating systems class).
Yeah, same. It's to learn how the stuff works, not how to use things properly. It's the same as the old "implement a bubble sort" thing.

Bubble sort is hardcore, but it's not quite as badass as stooge sort.  It has O(n^( log(3) / log(1.5) )), which is O(2.709...) running time! :D

Nothing beats garbage sort. I don't know what the order is, but the algorithm is:

garbage_sort(list)
{
  while(!is_sorted(list))
  {
    shuffle(list)
  }
}

(My friend's algorithm, not mine :) )

Haha, yeah.  Well, the search space is O(n^n) (n^n is \Theta(n!)).  Since it's stochastic, there really isn't an order.  You could analyze the expected run time, but there is no "worst" case.  For any proposed finite worst case (i.e., n^n iterations), you could still do worse if you're unlucky.
So it's O(∞). Good game, try finding a worse algorithm! :)
Title: Re: Semaphores using pthreads
Post by: Sidoh on March 05, 2009, 06:49:03 PM
Quote from: iago on March 05, 2009, 05:51:31 PM
Quote from: Sidoh on March 05, 2009, 05:35:41 PM
Quote from: iago on March 05, 2009, 11:56:24 AM
Quote from: Sidoh on March 05, 2009, 11:01:32 AM
Quote from: iago on March 05, 2009, 10:53:26 AM
Quote from: MyndFyre on March 05, 2009, 10:13:03 AM
Quote from: nslay on March 05, 2009, 10:04:41 AM
Why in the world are you using a spin lock here?  I sure hope lock contention is low or the critical section is trivial.
I would guess it's for school.  (I had much worse assignments in my operating systems class).
Yeah, same. It's to learn how the stuff works, not how to use things properly. It's the same as the old "implement a bubble sort" thing.

Bubble sort is hardcore, but it's not quite as badass as stooge sort.  It has O(n^( log(3) / log(1.5) )), which is O(2.709...) running time! :D

Nothing beats garbage sort. I don't know what the order is, but the algorithm is:

garbage_sort(list)
{
  while(!is_sorted(list))
  {
    shuffle(list)
  }
}

(My friend's algorithm, not mine :) )

Haha, yeah.  Well, the search space is O(n^n) (n^n is \Theta(n!)).  Since it's stochastic, there really isn't an order.  You could analyze the expected run time, but there is no "worst" case.  For any proposed finite worst case (i.e., n^n iterations), you could still do worse if you're unlucky.
So it's O(∞). Good game, try finding a worse algorithm! :)

All algorithms are O(∞). :)
Title: Re: Semaphores using pthreads
Post by: iago on March 05, 2009, 06:53:58 PM
Quote from: Sidoh on March 05, 2009, 06:49:03 PM
Quote from: iago on March 05, 2009, 05:51:31 PM
Quote from: Sidoh on March 05, 2009, 05:35:41 PM
Quote from: iago on March 05, 2009, 11:56:24 AM
Quote from: Sidoh on March 05, 2009, 11:01:32 AM
Quote from: iago on March 05, 2009, 10:53:26 AM
Quote from: MyndFyre on March 05, 2009, 10:13:03 AM
Quote from: nslay on March 05, 2009, 10:04:41 AM
Why in the world are you using a spin lock here?  I sure hope lock contention is low or the critical section is trivial.
I would guess it's for school.  (I had much worse assignments in my operating systems class).
Yeah, same. It's to learn how the stuff works, not how to use things properly. It's the same as the old "implement a bubble sort" thing.

Bubble sort is hardcore, but it's not quite as badass as stooge sort.  It has O(n^( log(3) / log(1.5) )), which is O(2.709...) running time! :D

Nothing beats garbage sort. I don't know what the order is, but the algorithm is:

garbage_sort(list)
{
  while(!is_sorted(list))
  {
    shuffle(list)
  }
}

(My friend's algorithm, not mine :) )

Haha, yeah.  Well, the search space is O(n^n) (n^n is \Theta(n!)).  Since it's stochastic, there really isn't an order.  You could analyze the expected run time, but there is no "worst" case.  For any proposed finite worst case (i.e., n^n iterations), you could still do worse if you're unlucky.
So it's O(∞). Good game, try finding a worse algorithm! :)

All algorithms are O(∞). :)
Well, it's O(∞) for any value n > 1. :)
Title: Re: Semaphores using pthreads
Post by: Sidoh on March 05, 2009, 07:00:43 PM
All algorithms, regardless of input size, are O(∞).

The following is O(∞).
function :
  return 2;

Big-O denotes an upper bound.  It's often assumed that it's the "best" upper bound, and most text/literature uses it in this way, but it isn't something that's given to you automatically by using big-O.  If f(x) is O(g(x)), we know that f(x) is bounded above by g(x), but we don't know that it's bounded above.  If f(x) is Theta(g(x)), then it's bounded both above and below by g(x).  Big-O is used in place of big-Theta often because it's harder to prove a big-Omega (bounded below by) bound, and it isn't particularly useful for most things.
Title: Re: Semaphores using pthreads
Post by: iago on March 05, 2009, 07:43:40 PM
Fine, then my algorithm has the worst case of ∞ for any input > 1. :P

(I haven't used big O or theta or omega since second year comp sci :P)
Title: Re: Semaphores using pthreads
Post by: Sidoh on March 05, 2009, 08:04:14 PM
Quote from: iago on March 05, 2009, 07:43:40 PM
Fine, then my algorithm has the worst case of ∞ for any input > 1. :P

(I haven't used big O or theta or omega since second year comp sci :P)

That wording seems a little iffy.  Maybe it's acceptable, but I'd probably be a weeny and say it doesn't have a worst case.

heh, algorithms is one of things I've decided to study in more depth.  Asymptotic analysis is pretty important if you intend to do research that involves producing new stuff.
Title: Re: Semaphores using pthreads
Post by: iago on March 05, 2009, 08:15:11 PM
Quote from: Sidoh on March 05, 2009, 08:04:14 PM
Asymptotic analysis is pretty important if you intend to do research that involves producing new stuff.
Fortunately, I don't produce new stuff, I just break old stuff. :D
Title: Re: Runtime Analysis.... kind of.
Post by: iago on March 06, 2009, 12:05:27 PM
Thanks for splitting it off.

Also, your new avatar looks too much like Ender's, I keep getting mixed up :)
Title: Re: Runtime Analysis.... kind of.
Post by: MyndFyre on March 06, 2009, 12:35:17 PM
Quote from: iago on March 06, 2009, 12:05:27 PM
Thanks for splitting it off.

Also, your new avatar looks too much like Ender's, I keep getting mixed up :)


Uhhh.....
(http://www.jinxbot.net/pub/myndfyre-ender.png)

I can't say I see the similarity.   :o
Title: Re: Runtime Analysis.... kind of.
Post by: Blaze on March 06, 2009, 12:42:08 PM
Quote from: MyndFyre on March 06, 2009, 12:35:17 PM
Quote from: iago on March 06, 2009, 12:05:27 PM
Thanks for splitting it off.

Also, your new avatar looks too much like Ender's, I keep getting mixed up :)


Uhhh.....
(http://www.jinxbot.net/pub/myndfyre-ender.png)

I can't say I see the similarity.   :o

Try:

(http://forum.x86labs.org/index.php?action=dlattach;attach=368;type=avatar)(http://i33.tinypic.com/1htufa.jpg)
Title: Re: Runtime Analysis.... kind of.
Post by: MyndFyre on March 06, 2009, 12:52:06 PM
Quote from: Blaze on March 06, 2009, 12:42:08 PM
Quote from: MyndFyre on March 06, 2009, 12:35:17 PM
Quote from: iago on March 06, 2009, 12:05:27 PM
Thanks for splitting it off.

Also, your new avatar looks too much like Ender's, I keep getting mixed up :)


Uhhh.....
(http://www.jinxbot.net/pub/myndfyre-ender.png)

I can't say I see the similarity.   :o

Try:

(http://forum.x86labs.org/index.php?action=dlattach;attach=368;type=avatar)(http://i33.tinypic.com/1htufa.jpg)
I don't see that avatar.
Title: Re: Runtime Analysis.... kind of.
Post by: Sidoh on March 06, 2009, 01:14:58 PM
See no evil? :O

Does this one look better, iago?

(http://tbn1.google.com/images?q=tbn:jP_pruRYupw6lM:http://boakes.org/pics/2006/underground/fsm.jpg)
Title: Re: Runtime Analysis.... kind of.
Post by: iago on March 06, 2009, 02:42:56 PM
Yeah, I was talking to Sidoh. :)

Sidoh -- I can't tell, you'd have to use it. I suspect so, though, the main issue for me is the coloured picture on a white background, from the corner of the eye it looks the same.
Title: Re: Runtime Analysis.... kind of.
Post by: MyndFyre on March 06, 2009, 07:06:47 PM
Quote from: iago on March 06, 2009, 02:42:56 PM
Yeah, I was talking to Sidoh. :)

OH.  I split it off.  That's why I thought you were talking to me.
Title: Re: Runtime Analysis.... kind of.
Post by: iago on March 06, 2009, 07:48:22 PM
Quote from: MyndFyre on March 06, 2009, 07:06:47 PM
Quote from: iago on March 06, 2009, 02:42:56 PM
Yeah, I was talking to Sidoh. :)

OH.  I split it off.  That's why I thought you were talking to me.

Well, I assumed Sidoh did. I didn't actually check. :P
Title: Re: Runtime Analysis.... kind of.
Post by: MyndFyre on March 07, 2009, 03:57:50 AM
Quote from: iago on March 06, 2009, 07:48:22 PM
Quote from: MyndFyre on March 06, 2009, 07:06:47 PM
Quote from: iago on March 06, 2009, 02:42:56 PM
Yeah, I was talking to Sidoh. :)

OH.  I split it off.  That's why I thought you were talking to me.

Well, I assumed Sidoh did. I didn't actually check. :P

I even said it in the first post!  It says "MyndFyre edit: split" or something! :P
Title: Re: Runtime Analysis.... kind of.
Post by: iago on March 07, 2009, 10:43:43 AM
Quote from: MyndFyre on March 07, 2009, 03:57:50 AM
Quote from: iago on March 06, 2009, 07:48:22 PM
Quote from: MyndFyre on March 06, 2009, 07:06:47 PM
Quote from: iago on March 06, 2009, 02:42:56 PM
Yeah, I was talking to Sidoh. :)

OH.  I split it off.  That's why I thought you were talking to me.

Well, I assumed Sidoh did. I didn't actually check. :P

I even said it in the first post!  It says "MyndFyre edit: split" or something! :P
Why would I read a post I'd already read? :P