Skip to main content
Log in

Mojo module

tensor_builder

Tensor Builder Module

Provides a fluent interface for constructing tensors with various layouts and memory configurations. It includes utilities for creating both static (compile-time) and dynamic (runtime) tensor dimensions, supporting row-major, column-major, and custom layouts. The module enables memory placement in different address spaces (generic, shared, local) and supports features like circular indexing.

Key components:

  • ValueOrUnknown: Represents static or dynamic tensor dimensions
  • LayoutTensorBuild: Builder class for tensor construction
  • Helper functions for dimension specification and layout creation

Structs

  • LayoutTensorBuild: Tensor layout builder providing a fluent interface for constructing tensors with various layouts.
  • ValueOrUnknown: Represents either a static dimension (known at compile time) or a dynamic dimension (known at runtime).

Functions

  • dynamic: Creates a dynamic dimension with runtime value.
  • static: Creates a static dimension with compile-time value.