I've searched for the use of @specialized in the source code of the standard library of Scala 2.8.1. It looks like only a handful of traits and classes use this annotation: Function0, Function1, Function2, Tuple1, Tuple2, Product1, Product2, AbstractFunction0, AbstractFunction1, AbstractFunction2.

None of the collection classes are @specialized. Why not? Would this generate too many classes?

This means that using collection classes with primitive types is very inefficient, because there will be a lot of unnecessary boxing and unboxing going on.

What's the most efficient way to have an immutable list or sequence (with IndexedSeq characteristics) of Ints, avoiding boxing and unboxing?

link|improve this question

1  
Wow, cheez, i assumed that List and IndexedSeq are specialized. Doing some :javap -c with the new scala 2.9 REPL shows they still do boxing all the time. The constructors are optimized though it seems (List(1,2,3) uses a wrapIntArray). – Sciss Mar 29 '11 at 23:48
That's really unwanted overhead when dealing with huge datasets of numbers. – Raphael Mar 31 '11 at 7:20
feedback

2 Answers

up vote 8 down vote accepted

Specialization has a high cost on the size of classes, so it must be added with careful consideration. In the particular case of collections, I imagine the impact will be huge.

Still, it is an on-going effort -- Scala library has barely started to be specialized.

link|improve this answer
4  
This is correct. Video from Scala Days 2010 on @Specialized, where Iulian Dragos explains why it's not everywhere: days2010.scala-lang.org/node/138/151 – Matthew Farwell Mar 30 '11 at 7:53
1  
I've also grepped through the source of the Scala 2.9 RC1 library and unfortunately it looks like nothing has changed yet! – Jesper Mar 30 '11 at 17:29
feedback

Partial answer to my own question: I can wrap an array in an IndexedSeq like this:

import scala.collection.immutable.IndexedSeq

def arrayToIndexedSeq[@specialized(Int) T](array: Array[T]): IndexedSeq[T] = new IndexedSeq[T] {
  def apply(idx: Int): T = array(idx)
  def length: Int = array.length
}

(Ofcourse you could still modify the contents if you have access to the underlying array, but I would make sure that the array isn't passed to other parts of my program).

link|improve this answer
1  
Since you are hiding behind IndexedSeq that still doesn't convince the compiler not to use autoboxing. For instance, if i run the :javap -c on the following: object Test { val a = arrayToIndexedSeq( Array(1,2,3)); val i: Int = a(0)} -- you will see that val i = a(0) does boxing (in SeqLike).... – Sciss Mar 29 '11 at 23:53
@Sciss Ok... grrr! Is there another way to get rid of the unnecessary autoboxing? Is directly using mutable arrays the only way to avoid it? – Jesper Mar 30 '11 at 6:38
1  
I don't know. I guess we need to make a petition to add more specializations to the collections. Martin Odersky kind of promised that here: scala-lang.org/node/7285 ; the problem i guess is due to the heavy factoring out of traits in the new collections that if you want Vector to be specialized, you will end up having to specialize a dozen involved traits, which in turn creates high bloat on the size of the library. Still, I think we should vote for that, it definitely sucks to have weak performance for Vector which is really the number crunching swiss army knife in scala. – Sciss Mar 30 '11 at 13:29
@Sciss I've carefully looked at the output of scalac -print ... and following the sequence of methods being called, it looks like it actually does avoid boxing when I call apply() on it. (Using scala 2.8.1). There are some calls to scala.Int.box() but those are not called for that code path. – Jesper Mar 31 '11 at 21:34
Your collection however does have one advantage: it does not box stored elements, and that's a huge memory saving if the collection is (moderately) large. An integer is 4 bytes, boxing will probably add at least other 16 bytes to that (for object headers and the pointers to objects). When you extract one int, only that is boxed. – Blaisorblade Jul 19 '11 at 10:21
feedback

Your Answer

 
or
required, but never shown

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