scalation
package scalation
- Alphabetic
- By Inheritance
- scalation
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Type Members
-
class
NormSqRleTask extends RecursiveTask[Double]
The
NormSqRleTask
computes the Euclidean norm (2-norm) in parallel via Recursive Tasks (i.e., forRleVectorD
) -
class
SumRleTask extends RecursiveTask[Double]
The
SumRleTask
computes the sum in parallel via Recursive Tasks (i.e., forRleVectorD
) -
class
SumTask extends RecursiveTask[Double]
The
SumTask
computes the sum in parallel via Recursive Tasks (i.e., forVectorD
). -
class
Worker extends Thread
The
Worker
class allows tasks to be executed in parallel.
Value Members
- val BASE: String
- val DATA_DIR: String
- val LOG_DIR: String
- val MEM_MAPPED_DIR: String
- val SEP: String
- val SRC_DIR: String
- val SRC_SCALA_DIR: String
- val STORE_DIR: String
- def removeLast(s: String): String
- def setParallelism[A](n: Int)(block: ⇒ A): A
- val ⁄: String
-
object
RecTaskTest extends App
The
RecTaskTest
object tests the operations provided inRecTask
.The
RecTaskTest
object tests the operations provided inRecTask
. > run-main scalation.RecTaskTest -
object
WorkerTest extends App
The
WorkerTest
object tests theWorker
class vs.The
WorkerTest
object tests theWorker
class vs. Scala's built-in '.par' on the matrix multiplication problem. > runMain scalation.frame.WorkerTest