repa-3.2.5.1: High performance, regular, shape polymorphic parallel arrays.

Safe HaskellNone
LanguageHaskell98

Data.Array.Repa.Repr.HintInterleave

Synopsis

Documentation

data I r1 Source

Hints that computing this array will be an unbalanced workload and evaluation should be interleaved between the processors.

Instances

Source r1 a => Source (I r1) a 
(Shape sh, Load D sh e) => Load (I D) sh e 
Structured r1 a b => Structured (I r1) a b 
Read (Array r1 sh e) => Read (Array (I r1) sh e) 
Show (Array r1 sh e) => Show (Array (I r1) sh e) 
type TR (I r1) = I (TR r1) 
data Array (I r1) sh a = AInterleave !(Array r1 sh a) 

hintInterleave :: Array r1 sh e -> Array (I r1) sh e Source

Wrap an array with a unbalanced-ness hint.