{-# OPTIONS_HADDOCK hide #-} -- | -- Module : Data.Array.Accelerate.Array.Unique -- Copyright : [2016..2017] Manuel M T Chakravarty, Gabriele Keller, Trevor L. McDonell, Robert Clifton-Everest -- License : BSD3 -- -- Maintainer : Trevor L. McDonell -- Stability : experimental -- Portability : non-portable (GHC extensions) -- module Data.Array.Accelerate.Array.Unique ( UniqueArray(..), newUniqueArray, withUniqueArrayPtr, unsafeUniqueArrayPtr, touchUniqueArray, ) where -- library import Control.Applicative import Control.Concurrent.Unique import Control.DeepSeq import Foreign.ForeignPtr import Foreign.ForeignPtr.Unsafe import Foreign.Ptr import Prelude -- friends import Data.Array.Accelerate.Lifetime -- | A uniquely identifiable array. -- -- For the purposes of memory management, we use arrays as keys in a table. For -- this reason we need a way to uniquely identify each array we create. We do -- this by attaching a unique identifier to each array. -- -- Note: [Unique array strictness] -- -- The actual array data is in many cases unnecessary. For discrete memory -- backends such as for GPUs, we require the unique identifier to track the data -- in the remote memory space, but the data will in most cases never be copied -- back to the host. Thus, the array payload field is only lazily allocated, and -- we should be careful not to make this field overly strict. -- data UniqueArray e = UniqueArray { uniqueArrayId :: {-# UNPACK #-} !Unique , uniqueArrayData :: {-# UNPACK #-} !(Lifetime (ForeignPtr e)) } instance NFData (UniqueArray e) where rnf (UniqueArray _ ad) = unsafeGetValue ad `seq` () -- | Create a new UniqueArray -- {-# INLINE newUniqueArray #-} newUniqueArray :: ForeignPtr e -> IO (UniqueArray e) newUniqueArray fp = UniqueArray <$> newUnique <*> newLifetime fp -- | Access the pointer backing the unique array. -- -- The array data is kept alive at least during the whole action, even if it is -- not directly used inside. Note that it is not safe to return the pointer from -- the action and use it after the action completes. All uses of the pointer -- should be inside the bracketed function. -- {-# INLINE withUniqueArrayPtr #-} withUniqueArrayPtr :: UniqueArray a -> (Ptr a -> IO b) -> IO b withUniqueArrayPtr ua go = withLifetime (uniqueArrayData ua) $ \fp -> withForeignPtr fp go -- | Extract the pointer backing the unique array. -- -- This is potentially unsafe, as if the argument is the last occurrence of this -- unique array then the finalisers will be run, potentially invalidating the -- plain pointer just obtained. -- -- See also: 'unsafeGetValue', 'unsafeForeignPtrToPtr'. -- {-# INLINE unsafeUniqueArrayPtr #-} unsafeUniqueArrayPtr :: UniqueArray a -> Ptr a unsafeUniqueArrayPtr = unsafeForeignPtrToPtr . unsafeGetValue . uniqueArrayData -- | Ensure that the unique array is alive at the given place in a sequence of -- IO actions. Note that this does not force the actual array payload. -- -- See: [Unique array strictness] -- {-# INLINE touchUniqueArray #-} touchUniqueArray :: UniqueArray a -> IO () touchUniqueArray = touchLifetime . uniqueArrayData