cuda 0.5.0.1 → 0.5.0.2
raw patch · 8 files changed
+8/−2 lines, 8 files
Files
- Foreign/CUDA/Driver/Context.chs +1/−0
- Foreign/CUDA/Driver/Device.chs +1/−0
- Foreign/CUDA/Driver/Event.chs +1/−0
- Foreign/CUDA/Driver/Stream.chs +1/−0
- Foreign/CUDA/Driver/Texture.chs +1/−0
- Foreign/CUDA/Runtime/Event.chs +1/−0
- Foreign/CUDA/Runtime/Stream.chs +1/−1
- cuda.cabal +1/−1
Foreign/CUDA/Driver/Context.chs view
@@ -51,6 +51,7 @@ -- A device context -- newtype Context = Context { useContext :: {# type CUcontext #}}+ deriving (Eq, Show) -- |
Foreign/CUDA/Driver/Device.chs view
@@ -42,6 +42,7 @@ -------------------------------------------------------------------------------- newtype Device = Device { useDevice :: {# type CUdevice #}}+ deriving (Eq, Show) -- |
Foreign/CUDA/Driver/Event.chs view
@@ -43,6 +43,7 @@ -- Events -- newtype Event = Event { useEvent :: {# type CUevent #}}+ deriving (Eq, Show) -- | -- Event creation flags
Foreign/CUDA/Driver/Stream.chs view
@@ -41,6 +41,7 @@ -- A processing stream -- newtype Stream = Stream { useStream :: {# type CUstream #}}+ deriving (Eq, Show) -- |
Foreign/CUDA/Driver/Texture.chs view
@@ -53,6 +53,7 @@ -- A texture reference -- newtype Texture = Texture { useTexture :: {# type CUtexref #}}+ deriving (Eq, Show) instance Storable Texture where sizeOf _ = sizeOf (undefined :: {# type CUtexref #})
Foreign/CUDA/Runtime/Event.chs view
@@ -50,6 +50,7 @@ -- Events -- newtype Event = Event { useEvent :: {# type cudaEvent_t #}}+ deriving (Eq, Show) -- | -- Event creation flags
Foreign/CUDA/Runtime/Stream.chs view
@@ -39,7 +39,7 @@ -- A processing stream -- newtype Stream = Stream { useStream :: {# type cudaStream_t #}}- deriving (Show)+ deriving (Eq, Show) --------------------------------------------------------------------------------
cuda.cabal view
@@ -1,5 +1,5 @@ Name: cuda-Version: 0.5.0.1+Version: 0.5.0.2 Synopsis: FFI binding to the CUDA interface for programming NVIDIA GPUs Description: The CUDA library provides a direct, general purpose C-like SPMD programming