cublas-0.2.0.0: Foreign/CUDA/Cublas/Error.hs
{-# LANGUAGE DeriveDataTypeable #-}
module Foreign.CUDA.Cublas.Error where
import Foreign.CUDA.Cublas.Types (Status (..))
-- System
import Data.Typeable
import Control.Exception
-- Error codes -----------------------------------------------------------------
--
-- Describe each error code
--
describe :: Status -> String
describe Success = "success"
describe NotInitialized = "library not initialised"
describe AllocFailed = "resource allocation failed"
describe InvalidValue = "unsupported value or parameter passed to a function"
describe ArchMismatch = "unsupported on current architecture"
describe MappingError = "access to GPU memory failed"
describe ExecutionFailed = "execution failed"
describe InternalError = "internal error"
-- Exceptions ------------------------------------------------------------------
--
data CUBLASException
= ExitCode Status
| UserError String
deriving Typeable
instance Exception CUBLASException
instance Show CUBLASException where
showsPrec _ (ExitCode s) = showString ("CUBLAS Exception: " ++ describe s)
showsPrec _ (UserError s) = showString ("CUBLAS Exception: " ++ s)
-- | Raise a CUBLASException in the IO Monad
--
cublasError :: String -> IO a
cublasError s = throwIO (UserError s)
-- | Return the results of a function on successful execution, otherwise throw
-- an exception with an error string associated with the return code
--
resultIfOk :: (Status, a) -> IO a
resultIfOk (status,result) =
case status of
Success -> return result
_ -> throwIO (ExitCode status)