tvm
|
Automatic differentiation of tensor expressions. More...
Go to the source code of this file.
Namespaces | |
tvm | |
runtime implementation for LibTorch/TorchScript. | |
tvm::te | |
Tensor expression language DSL. | |
Functions | |
PrimExpr | tvm::te::Derivative (const PrimExpr &expr, const Var &var) |
Take the derivative of the expression with respect to the given variable. More... | |
Tensor | tvm::te::Jacobian (const Tensor &output, const Tensor &input) |
Get the tensor representing the Jacobian of the output with respect to the input. More... | |
Tensor | tvm::te::VectorJacobianProduct (const Tensor &output, const Tensor &input, const Tensor &head) |
The building block for reverse-mode AD. More... | |
Array< Tensor > | tvm::te::Gradient (const Tensor &output, const Array< Tensor > &inputs, const Tensor &head=Tensor()) |
Perform reverse mode automatic differentiation. More... | |
Automatic differentiation of tensor expressions.