Algodiff.Builder
module type Siso = sig ... end
val build_siso : (module Siso) -> t -> t
build single input single output operations
module type Sipo = sig ... end
val build_sipo : (module Sipo) -> t -> t * t
build single input pair outputs operations
module type Sito = sig ... end
val build_sito : (module Sito) -> t -> t * t * t
build single input triple outputs operations
module type Siao = sig ... end
val build_siao : (module Siao) -> t -> t array
build single input array output operations
module type Piso = sig ... end
val build_piso : (module Piso) -> t -> t -> t
build pair inputs single output operations
module type Aiso = sig ... end
val build_aiso : (module Aiso) -> t array -> t
build array input single output operations