I coded the following implementation of lazy sieve algorithms using Stream and lazy val below :

def primes(): Stream[Int] = {
   lazy val ps = 2 #:: sieve(3)
   def sieve(p: Int): Stream[Int] = {
       p #:: sieve(
            Stream.from(p + 2, 2).
             find(i=> ps.takeWhile(j => j * j <= i).
                     forall(i % _ > 0)).get)
  }
  ps
}

and the following implementation using (mutable) ListBuffer:

import scala.collection.mutable.ListBuffer
def primes(): Stream[Int] = {
    def sieve(p: Int, ps: ListBuffer[Int]): Stream[Int] = {
        p #:: { val nextprime =
            Stream.from(p + 2, 2).
            find(i=> ps.takeWhile(j => j * j <= i).
                 forall(i % _ > 0)).get
            sieve(nextprime, ps += nextprime)
         }
    }       
    sieve(3, ListBuffer(3))}

When I did primes().takeWhile(_ < 1000000).size , the first implementation is 3 times faster than the second one. What's the explanation for this ?

I edited the second version: it should have been sieve(3, ListBuffer(3)) instead of sieve(3, ListBuffer()) .

link|improve this question
The second version says 9, 15, 21, 27 ... are prime numbers... – huynhjl Dec 26 '10 at 16:14
Sorry, my fault. I edited the last line of the second version: – anrizal - Anwar Rizal Dec 26 '10 at 16:28
I assume the second implementation is three times faster than the first one? You said the first implementation is faster than the first implementation, which doesn't make any sense. :-) – Daniel C. Sobral Dec 26 '10 at 16:46
Another fault, sorry. The first is three time faster than the second. – anrizal - Anwar Rizal Dec 26 '10 at 16:49
MMmmm. I get something like 1312 vs 1478 here, not three times. Yet, I expected the second version to be faster.... What's the scala version, compiler flags, jvm flags, jre version, architecture, etc? – Daniel C. Sobral Dec 26 '10 at 16:56
show 2 more comments
feedback

2 Answers

up vote 6 down vote accepted

Well, my guess is this line:

find(i=> ps.takeWhile(j => j * j <= i).forall(i % _ > 0)).get

On ListBuffer, takeWhile creates a temporary collection (which keeps getting bigger and bigger). Meanwhile, Stream, because of its non-strictness, avoids doing so. As soon as the forall fails, it stops computing the takeWhile.

link|improve this answer
You are right! That should be the problem. I modified the line to find(i=> ps.view.takeWhile(j => j * j <= i).forall(i % _ > 0)).get and it became faster; even faster than the first one. – anrizal - Anwar Rizal Dec 26 '10 at 17:28
@anrizal The first one uses lazy val, which is synchronized. I was very surprised it ran faster despite of that. – Daniel C. Sobral Dec 26 '10 at 17:58
I made another try with another machine. It is slightly bigger: 4G RaM, Dual Core, Windows compared to my laptop where I did my test before. I didn't find the same symptom for 1000000, but for 2000000, again the second version was three times slower. ps.view.takeWhile solved the problem for both though. – anrizal - Anwar Rizal Dec 27 '10 at 9:39
feedback

Not really answering the question but since I spent some times benchmarking various combinations...

You can get better performance if you use Iterator, ArrayBuffer and avoid takeWhile in the inner loop, to minimize memory allocations.

def primes2(): Stream[Int] = {
  def sieve(p: Int, ps: ArrayBuffer[Int]): Stream[Int] = {
    def hasNoDivisor(prime_? :Int, j: Int = 0): Boolean = {
      val n = ps(j)
      if (n*n > prime_?) true
      else if (prime_? % n == 0) false else hasNoDivisor(prime_?, j+1)
    }
    p #:: { 
      val nextprime = Iterator.from(ps.last + 2, 2).find(hasNoDivisor(_)).get
      sieve(nextprime, ps += nextprime)
    }
  }     
  sieve(3, ArrayBuffer(3))
}

Here is a version with Iterator instead of Stream, it's faster and you can always use primes3().toStream to get a Stream if needed.

def primes3() = List(2,3).iterator ++ new Iterator[Int] {
  val ps = ArrayBuffer[Int](3)
  def hasNoDivisor(prime_? :Int, j: Int = 0): Boolean = {
    val n = ps(j)
    if (n*n > prime_?) true
    else if (prime_? % n == 0) false else hasNoDivisor(prime_?, j+1)
  }
  def hasNext = true
  def next() = {
    val nextprime = Iterator.from(ps.last + 2, 2).find(hasNoDivisor(_)).get
    ps += nextprime
    nextprime
  }
}

Results:

primes : warming...
primes : running...
primes : elapsed: 3.711
res39: Int = 283145
primes2: warming...
primes2: running...
primes2: elapsed: 1.039
res40: Int = 283145
primes3: warming...
primes3: running...
primes3: elapsed: 0.530
res41: Int = 283146

I also tried replacing from, find and hasNoDivisor with a couple of while loops, and that was faster, but less comprehensible.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.