packages feed

repa 2.0.1.1 → 2.0.2.1

raw patch · 2 files changed

+4/−3 lines, 2 files

Files

Data/Array/Repa/Internals/Base.hs view
@@ -72,7 +72,9 @@ -- | Generates array elements for a particular region in the array. data Generator sh a 	-- | Elements are already computed and sitting in this vector. -	= GenManifest !(Vector a)+	= GenManifest (Vector a)+	--   NOTE: Don't make the vector field strict. If you do then deepSeqing arrays+	--         outside of loops won't cause the unboxings to be floated out. 		 	-- | Elements can be computed using these cursor functions. 	| forall cursor@@ -88,7 +90,6 @@   -- DeepSeqs -------------------------------------------------------------------- -- | Ensure the structure for an array is fully evaluated. --   As we are in a lazy language, applying the @force@ function to a delayed array doesn't --   actually compute it at that point. Rather, Haskell builds a suspension representing the
repa.cabal view
@@ -1,5 +1,5 @@ Name:                repa-Version:             2.0.1.1+Version:             2.0.2.1 License:             BSD3 License-file:        LICENSE Author:              The DPH Team