dvda-0.3.0.1: Efficient automatic differentiation and code generation

Safe HaskellSafe-Infered

Dvda

Contents

Description

This is the top level module which exports the API

Synopsis

primitives

sym :: String -> Expr aSource

symbolic scalar

symDependent :: String -> Expr a -> Expr aSource

Symbolic scalar which is a function of some independent variable, like time. . This lets you do d(f(g(t)))/dt == f'(g(t))*g'(t)

symDependentN :: String -> Expr a -> Int -> Expr aSource

same as symDependent but it can start as the Nth derivative

operations

rad :: (Num a, Eq a, Hashable a) => Expr a -> [Expr a] -> [Expr a]Source

symbolic expression type

data Expr a Source

Instances

Typeable1 Expr 
Eq a => Eq (Expr a) 
(Floating a, Eq a) => Floating (Expr a) 
(Fractional a, Eq a) => Fractional (Expr a) 
(Data a, Floating a) => Data (Expr a) 
(Num a, Eq a) => Num (Expr a) 
Show a => Show (Expr a) 
Hashable a => Hashable (Expr a) 
MuRef (Expr a) 
ToFunGraph [[Expr a]] 
ToFunGraph [Expr a] 
ToFunGraph (Expr a) 

construct FunGraphs

toFunGraph :: (Eq a, Hashable a, Show a, ToFunGraph b, ToFunGraph c, NumT b ~ a, NumT c ~ a) => b -> c -> IO (FunGraph a)Source

Take inputs and outputs which are of classes ToFunGraph (heterogenous lists of Expr a) and traverse the outputs reifying all expressions and creating a hashmap of StableNames (stable pointers). Once the hashmap is created, lookup the provided inputs and return a FunGraph which contains an expression graph, input/output indices, and other useful functions. StableNames is non-deterministic so this function may return graphs with more or fewer CSE's eliminated. If CSE is then performed on the graph, the result is deterministic.

show/summarize FunGraphs

compile and link function

Heterogenous inputs/outputs

data a :* b Source

Constructors

a :* b 

Instances

(Show a, Show b) => Show (:* a b) 
(ToFunGraph a, ToFunGraph b, ~ * (NumT a) (NumT b)) => ToFunGraph (:* a b)