Example Gallery: Building Blocks¶
This is a gallery of Tesseract examples that end at the build stage of the Tesseract lifecycle, and that can act as starting points to define and build your own Tesseracts.
You can also find these Tesseracts in the examples directory of the code repository.
Important
Beyond the Build: The real magic happens long after building a Tesseract. For some example applications that use Tesseracts in workflows, check out the Demos & Tutorials and Community Showcase.
Tesseract performing vector addition. Highlighting simple array operations and how to use the Tesseract Python SDK.
A Tesseract that wraps the univariate Rosenbrock function, which is a common test problem for optimization algorithms.
Wrapping a Fortran heat equation solver. Demonstrates subprocess-based integration for legacy compiled code.
A guide showcasing how to use custom build steps to install pyvista within an ARM64 Tesseract.
Tesseract that loads in data samples from a folder without loading them into memory.
Tesseract that mounts input and output directories as datasets. To be used for Tesseracts with large inputs and/or outputs.
Make any Tesseract differentiable without implementing analytical gradients. Useful for prototyping and complex nested schemas. (Experimental)
Derive missing gradient endpoints (JVP, VJP, Jacobian) from ones you have already implemented. (Experimental)