ad-4.5.6: src/Numeric/AD/Internal/Sparse/Double.hs
{-# LANGUAGE CPP #-}
{-# LANGUAGE BangPatterns #-}
{-# LANGUAGE DeriveDataTypeable #-}
{-# LANGUAGE FlexibleContexts #-}
{-# LANGUAGE FlexibleInstances #-}
{-# LANGUAGE FunctionalDependencies #-}
{-# LANGUAGE MultiParamTypeClasses #-}
{-# LANGUAGE TypeFamilies #-}
{-# LANGUAGE TypeOperators #-}
{-# LANGUAGE UndecidableInstances #-}
{-# OPTIONS_GHC -fno-warn-name-shadowing #-}
{-# OPTIONS_HADDOCK not-home #-}
-----------------------------------------------------------------------------
-- |
-- Copyright : (c) Edward Kmett 2010-2021
-- License : BSD3
-- Maintainer : ekmett@gmail.com
-- Stability : experimental
-- Portability : GHC only
--
-- Unsafe and often partial combinators intended for internal usage.
--
-- Handle with care.
-----------------------------------------------------------------------------
module Numeric.AD.Internal.Sparse.Double
( Monomial(..)
, emptyMonomial
, addToMonomial
, indices
, SparseDouble(..)
, apply
, vars
, d, d', ds
, skeleton
, spartial
, partial
, vgrad
, vgrad'
, vgrads
, Grad(..)
, Grads(..)
, terms
, primal
) where
import Prelude hiding (lookup)
import Control.Comonad.Cofree
import Control.Monad (join, guard)
import Data.Data
import Data.IntMap (IntMap, unionWith, findWithDefault, singleton, lookup)
import qualified Data.IntMap as IntMap
import Data.Number.Erf
import Data.Traversable
import Data.Typeable ()
import Numeric
import Numeric.AD.Internal.Combinators
import Numeric.AD.Internal.Sparse.Common
import Numeric.AD.Jacobian
import Numeric.AD.Mode
-- | We only store partials in sorted order, so the map contained in a partial
-- will only contain partials with equal or greater keys to that of the map in
-- which it was found. This should be key for efficiently computing sparse hessians.
-- there are only @n + k - 1@ choose @k@ distinct nth partial derivatives of a
-- function with k inputs.
data SparseDouble
= Sparse {-# UNPACK #-} !Double (IntMap SparseDouble)
| Zero
deriving (Show, Data, Typeable)
vars :: Traversable f => f Double -> f SparseDouble
vars = snd . mapAccumL var 0 where
var !n a = (n + 1, Sparse a $ singleton n $ auto 1)
{-# INLINE vars #-}
apply :: Traversable f => (f SparseDouble -> b) -> f Double -> b
apply f = f . vars
{-# INLINE apply #-}
d :: Traversable f => f b -> SparseDouble -> f Double
d fs Zero = 0 <$ fs
d fs (Sparse _ da) = snd $ mapAccumL (\ !n _ -> (n + 1, maybe 0 primal $ lookup n da)) 0 fs
{-# INLINE d #-}
d' :: Traversable f => f Double -> SparseDouble -> (Double, f Double)
d' fs Zero = (0, 0 <$ fs)
d' fs (Sparse a da) = (a, snd $ mapAccumL (\ !n _ -> (n + 1, maybe 0 primal $ lookup n da)) 0 fs)
{-# INLINE d' #-}
ds :: Traversable f => f b -> SparseDouble -> Cofree f Double
ds fs Zero = r where r = 0 :< (r <$ fs)
ds fs as@(Sparse a _) = a :< (go emptyMonomial <$> fns) where
fns = skeleton fs
-- go :: Monomial -> Int -> Cofree f a
go ix i = partial (indices ix') as :< (go ix' <$> fns) where
ix' = addToMonomial i ix
{-# INLINE ds #-}
partialS :: [Int] -> SparseDouble -> SparseDouble
partialS [] a = a
partialS (n:ns) (Sparse _ da) = partialS ns $ findWithDefault Zero n da
partialS _ Zero = Zero
{-# INLINE partialS #-}
partial :: [Int] -> SparseDouble -> Double
partial [] (Sparse a _) = a
partial (n:ns) (Sparse _ da) = partial ns $ findWithDefault (auto 0) n da
partial _ Zero = 0
{-# INLINE partial #-}
spartial :: [Int] -> SparseDouble -> Maybe Double
spartial [] (Sparse a _) = Just a
spartial (n:ns) (Sparse _ da) = do
a' <- lookup n da
spartial ns a'
spartial _ Zero = Nothing
{-# INLINE spartial #-}
primal :: SparseDouble -> Double
primal (Sparse a _) = a
primal Zero = 0
instance Mode SparseDouble where
type Scalar SparseDouble = Double
auto a = Sparse a IntMap.empty
zero = Zero
isKnownZero Zero = True
isKnownZero (Sparse 0 m) = null m
isKnownZero _ = False
isKnownConstant Zero = True
isKnownConstant (Sparse _ m) = null m
asKnownConstant Zero = Just 0
asKnownConstant (Sparse a m) = a <$ guard (null m)
Zero ^* _ = Zero
Sparse a as ^* b = Sparse (a * b) $ fmap (^* b) as
_ *^ Zero = Zero
a *^ Sparse b bs = Sparse (a * b) $ fmap (a *^) bs
Zero ^/ _ = Zero
Sparse a as ^/ b = Sparse (a / b) $ fmap (^/ b) as
infixr 6 <+>
(<+>) :: SparseDouble -> SparseDouble -> SparseDouble
Zero <+> a = a
a <+> Zero = a
Sparse a as <+> Sparse b bs = Sparse (a + b) $ unionWith (<+>) as bs
-- The instances for Jacobian for Sparse and Tower are almost identical;
-- could easily be made exactly equal by small changes.
instance Jacobian SparseDouble where
type D SparseDouble = SparseDouble
unary f _ Zero = auto (f 0)
unary f dadb (Sparse pb bs) = Sparse (f pb) $ IntMap.map (* dadb) bs
lift1 f _ Zero = auto (f 0)
lift1 f df b@(Sparse pb bs) = Sparse (f pb) $ IntMap.map (* df b) bs
lift1_ f _ Zero = auto (f 0)
lift1_ f df b@(Sparse pb bs) = a where
a = Sparse (f pb) $ IntMap.map (df a b *) bs
binary f _ _ Zero Zero = auto (f 0 0)
binary f _ dadc Zero (Sparse pc dc) = Sparse (f 0 pc) $ IntMap.map (dadc *) dc
binary f dadb _ (Sparse pb db) Zero = Sparse (f pb 0 ) $ IntMap.map (dadb *) db
binary f dadb dadc (Sparse pb db) (Sparse pc dc) = Sparse (f pb pc) $
unionWith (<+>) (IntMap.map (dadb *) db) (IntMap.map (dadc *) dc)
lift2 f _ Zero Zero = auto (f 0 0)
lift2 f df Zero c@(Sparse pc dc) = Sparse (f 0 pc) $ IntMap.map (dadc *) dc where dadc = snd (df zero c)
lift2 f df b@(Sparse pb db) Zero = Sparse (f pb 0) $ IntMap.map (* dadb) db where dadb = fst (df b zero)
lift2 f df b@(Sparse pb db) c@(Sparse pc dc) = Sparse (f pb pc) da where
(dadb, dadc) = df b c
da = unionWith (<+>) (IntMap.map (dadb *) db) (IntMap.map (dadc *) dc)
lift2_ f _ Zero Zero = auto (f 0 0)
lift2_ f df b@(Sparse pb db) Zero = a where a = Sparse (f pb 0) (IntMap.map (fst (df a b zero) *) db)
lift2_ f df Zero c@(Sparse pc dc) = a where a = Sparse (f 0 pc) (IntMap.map (* snd (df a zero c)) dc)
lift2_ f df b@(Sparse pb db) c@(Sparse pc dc) = a where
(dadb, dadc) = df a b c
a = Sparse (f pb pc) da
da = unionWith (<+>) (IntMap.map (dadb *) db) (IntMap.map (dadc *) dc)
#define HEAD SparseDouble
#define BODY1(x)
#define BODY2(x,y)
#define NO_Bounded
#include "instances.h"
class Grad i o o' | i -> o o', o -> i o', o' -> i o where
pack :: i -> [SparseDouble] -> SparseDouble
unpack :: ([Double] -> [Double]) -> o
unpack' :: ([Double] -> (Double, [Double])) -> o'
instance Grad SparseDouble [Double] (Double, [Double]) where
pack i _ = i
unpack f = f []
unpack' f = f []
instance Grad i o o' => Grad (SparseDouble -> i) (Double -> o) (Double -> o') where
pack f (a:as) = pack (f a) as
pack _ [] = error "Grad.pack: logic error"
unpack f a = unpack (f . (a:))
unpack' f a = unpack' (f . (a:))
vgrad :: Grad i o o' => i -> o
vgrad i = unpack (unsafeGrad (pack i)) where
unsafeGrad f as = d as $ apply f as
{-# INLINE vgrad #-}
vgrad' :: Grad i o o' => i -> o'
vgrad' i = unpack' (unsafeGrad' (pack i)) where
unsafeGrad' f as = d' as $ apply f as
{-# INLINE vgrad' #-}
class Grads i o | i -> o, o -> i where
packs :: i -> [SparseDouble] -> SparseDouble
unpacks :: ([Double] -> Cofree [] Double) -> o
instance Grads SparseDouble (Cofree [] Double) where
packs i _ = i
unpacks f = f []
instance Grads i o => Grads (SparseDouble -> i) (Double -> o) where
packs f (a:as) = packs (f a) as
packs _ [] = error "Grad.pack: logic error"
unpacks f a = unpacks (f . (a:))
vgrads :: Grads i o => i -> o
vgrads i = unpacks (unsafeGrads (packs i)) where
unsafeGrads f as = ds as $ apply f as
{-# INLINE vgrads #-}
isZero :: SparseDouble -> Bool
isZero Zero = True
isZero _ = False
mul :: SparseDouble -> SparseDouble -> SparseDouble
mul Zero _ = Zero
mul _ Zero = Zero
mul f@(Sparse _ am) g@(Sparse _ bm) = Sparse (primal f * primal g) (derivs 0 emptyMonomial) where
derivs v mi = IntMap.unions (map fn [v..kMax]) where
fn w
| and zs = IntMap.empty
| otherwise = IntMap.singleton w (Sparse (sum ds) (derivs w mi'))
where
mi' = addToMonomial w mi
(zs,ds) = unzip (map derVal (terms mi'))
derVal (bin,mif,mig) = (isZero fder || isZero gder, fromIntegral bin * primal fder * primal gder) where
fder = partialS (indices mif) f
gder = partialS (indices mig) g
kMax = maybe (-1) (fst.fst) (IntMap.maxViewWithKey am) `max` maybe (-1) (fst.fst) (IntMap.maxViewWithKey bm)