Mojo module
int_tuple
Hierarchical integer tuple data structures for high-performance tensor operations.
This module provides a flexible, memory-efficient implementation of nested integer tuples optimized for tensor shape, stride, and index operations in high-performance computing. The core data structures support both flat and hierarchical representations with efficient memory sharing and zero-copy views.
Key components:
IntArray
: Low-level register-passable array with direct memory managementIntTuple
: Hierarchical nested tuple with efficient memory layout and operations- Utility functions for tensor shape manipulation, coordinate transformations, and layout operations
Performance features:
- Register-passable data structures for optimal compiler optimizations
- Zero-copy views for efficient memory sharing
- Specialized memory layout for nested structures
- Optimized algorithms for common tensor operations
Common operations:
- Shape manipulation:
flatten
,to_nest
,apply
,product
,sum
- Coordinate transformations:
idx2crd
,crd2idx
- Layout operations:
compact_order
,prefix_product
- Structural comparisons:
congruent
,compatible
,weakly_congruent
Example usage:
from layout import IntTuple
from layout.int_tuple import flatten, compact_order, size
# Create nested tuples
var shape = IntTuple(2, IntTuple(3, 4), 5) # Represents shape (2, (3, 4), 5)
# Flatten a nested tuple
var flat = flatten(shape) # Results in (2, 3, 4, 5)
# Create compact strides for a given shape and order
var order = IntTuple(1, IntTuple(2, 3), 4)
var strides = compact_order(shape, order) # Results in (1, (2, 6), 24)
# Calculate total size (product of all elements)
var total_size = size(shape) # Results in 120
from layout import IntTuple
from layout.int_tuple import flatten, compact_order, size
# Create nested tuples
var shape = IntTuple(2, IntTuple(3, 4), 5) # Represents shape (2, (3, 4), 5)
# Flatten a nested tuple
var flat = flatten(shape) # Results in (2, 3, 4, 5)
# Create compact strides for a given shape and order
var order = IntTuple(1, IntTuple(2, 3), 4)
var strides = compact_order(shape, order) # Results in (1, (2, 6), 24)
# Calculate total size (product of all elements)
var total_size = size(shape) # Results in 120
Aliases
-
INT_TUPLE_VALIDATION = False
: -
IntList = List[Int, True]
: A type alias for a List of integers with ownership. This alias defines a List that contains Int values and has ownership of its data. It's used throughout the module for storing and manipulating collections of integers, particularly for operations like permutations and indices. -
UNKNOWN_VALUE = -1
: Special value indicating an unknown or unspecified dimension. This constant is used throughout theIntTuple
system to represent dimensions that are not known at compile time or have not been specified.
Structs
-
IntArray
: A memory-efficient, register-passable array of integers. -
IntTuple
: A hierarchical, nested tuple of integers with efficient memory management.
Functions
-
abs
: Compute the absolute value of each element in anIntTuple
. -
apply
: Apply a function to each integer value in anIntTuple
. -
apply_predicate
: Apply a predicate function recursively to twoIntTuple
s. -
apply_zip
: Apply a function to pairs of elements from twoIntTuple
s. -
compact_order
: Create a compact stride based on shape and order. -
compatible
: Test if two shapes are compatible for tensor operations. -
congruent
: Test if twoIntTuple
s have the same hierarchical structure. -
crd2idx
: Map a logical coordinate to a linear index. -
depth
: Calculates the maximum nesting depth of anIntTuple
. -
fill_like
: Creates anIntTuple
with the same structure as the source but filled with a specified value. -
flatten
: Flatten a nestedIntTuple
into a single-levelIntTuple
. -
idx2crd
: Converts a linear index to a coordinate tuple within a given shape. -
idx2crd2
: Convert a linear index to coordinates. -
inner_product
: Compute the inner product of twoIntTuple
s. -
is_int
: Check if anIntTuple
represents a single integer value. -
is_tuple
: Check if anIntTuple
represents a nested tuple. -
lt
: Compare twoIntTuple
s lexicographically. -
mul
: Multiply each element in anIntTuple
by a scalar value. -
prefix_product
: Compute the exclusive prefix product of anIntTuple
. -
product
: Calculate the product of all values in anIntTuple
. -
product_each
: Compute the product of elements in each sub-tuple of anIntTuple
. -
propagate_unknown
: Propagates unknown dimensions from the targetIntTuple
to the sourceIntTuple
. -
reduce
: Apply a reduction function to anIntTuple
with an initial value. -
reverse
: Reverses the order of elements in anIntTuple
, recursively. -
shallow_apply
: Apply a function to each top-level element of anIntTuple
. -
shape_div
: Performs division operation between shape tuples. -
signum
: Calculate the sign of an integer. -
size
: Calculate the total size (product of all elements) of anIntTuple
. -
sorted
: Sort an IntTuple using the provided comparison function. -
sum
: Calculate the sum of all values in anIntTuple
. -
to_nest
: Nests a flatIntTuple
according to the structure of a nestedIntTuple
. -
to_unknown
: Create anIntTuple
with the same structure but filled withUNKNOWN_VALUE
. -
tuple_max
: Calculate the maximum value in anIntTuple
. -
tuple_min
: Compute the element-wise minimum of twoIntTuple
s. -
weakly_compatible
: Test if shape A is weakly compatible with shape B. -
weakly_congruent
: Test if two IntTuples have similar hierarchical structures. -
zip
: Create a zip iterator from an array ofIntTuple
pointers.
Was this page helpful?
Thank you! We'll create more content like this.
Thank you for helping us improve!