Func
Namespace: SymTensor
Generates F# function from expressions.
Functions and values
Function or value | Description |
make (arg1, arg2) expr0
Signature: (IUExprCompiler * CompileEnvT) -> expr0:ExprT -> VarEnvT -> Tensor<'T0>
Type parameters: 'T0
|
makes a function that evaluates the given expression
|
make2 (arg1, arg2) expr0 expr1
Signature: (IUExprCompiler * CompileEnvT) -> expr0:ExprT -> expr1:ExprT -> VarEnvT -> Tensor<'T0> * Tensor<'T1>
Type parameters: 'T0, 'T1
|
|
make3 (arg1, arg2) expr0 expr1 expr2
Signature: (IUExprCompiler * CompileEnvT) -> expr0:ExprT -> expr1:ExprT -> expr2:ExprT -> VarEnvT -> Tensor<'T0> * Tensor<'T1> * Tensor<'T2>
Type parameters: 'T0, 'T1, 'T2
|
|
make4 (...)
Signature: (IUExprCompiler * CompileEnvT) -> expr0:ExprT -> expr1:ExprT -> expr2:ExprT -> expr3:ExprT -> VarEnvT -> Tensor<'T0> * Tensor<'T1> * Tensor<'T2> * Tensor<'T3>
Type parameters: 'T0, 'T1, 'T2, 'T3
|
|
make5 (...)
Signature: (IUExprCompiler * CompileEnvT) -> expr0:ExprT -> expr1:ExprT -> expr2:ExprT -> expr3:ExprT -> expr4:ExprT -> VarEnvT -> Tensor<'T0> * Tensor<'T1> * Tensor<'T2> * Tensor<'T3> * Tensor<'T4>
Type parameters: 'T0, 'T1, 'T2, 'T3, 'T4
|
|
makeMany (arg1, arg2) exprs
Signature: (IUExprCompiler * CompileEnvT) -> exprs:ExprT list -> VarEnvT -> Tensor<'T> list
Type parameters: 'T
|
|