massiv-0.3.0.1: tests/Data/Massiv/Core/SchedulerSpec.hs
{-# LANGUAGE FlexibleContexts #-}
{-# LANGUAGE FlexibleInstances #-}
module Data.Massiv.Core.SchedulerSpec (spec) where
import Control.Exception.Base (ArithException(DivideByZero))
import Data.Massiv.CoreArbitrary as A
import Prelude as P
-- | Ensure proper exception handling.
prop_CatchDivideByZero :: ArrIx D Ix2 Int -> [Int] -> Property
prop_CatchDivideByZero (ArrIx arr ix) caps =
assertException
(== DivideByZero)
(A.sum $
A.imap
(\ix' x ->
if ix == ix'
then x `div` 0
else x)
(setComp (ParOn caps) arr))
-- | Ensure proper exception handling in nested parallel computation
prop_CatchNested :: ArrIx D Ix1 (ArrIxP D Ix1 Int) -> [Int] -> Property
prop_CatchNested (ArrIx arr ix) caps =
assertException
(== DivideByZero)
(computeAs U $
A.map A.sum $
A.imap
(\ix' (ArrIxP iarr ixi) ->
if ix == ix'
then A.imap
(\ixi' e ->
if ixi == ixi'
then e `div` 0
else e)
iarr
else iarr)
(setComp (ParOn caps) arr))
spec :: Spec
spec =
describe "Exceptions" $ do
it "CatchDivideByZero" $ property prop_CatchDivideByZero
it "CatchNested" $ property prop_CatchNested