IMPORTANT: To view this page as Markdown, append `.md` to the URL (e.g. /max/get-started.md). For the complete documentation index, see llms.txt.
Skip to main content
For the complete documentation index, see llms.txt. Markdown versions of all pages are available by appending .md to any URL (e.g. /max/get-started.md).

Mojo function

get_scale_factor

def get_scale_factor[scales_dtype: DType, scales_layout: Layout, //, SF_VECTOR_SIZE: Int](scales_tensor: LayoutTensor[scales_dtype, scales_layout, MutAnyOrigin], row_idx: Int, col_idx: Int) -> Scalar[scales_dtype]

Loads a scale factor from a 5D non-batched LayoutTensor at the given row and column.

Translates the linear (row_idx, col_idx) coordinates into the 5D scale-factor layout used by MXFP4/NVFP4 block-scaled tensors and returns the stored scale factor.

Parameters:

  • ​scales_dtype (DType): Element type of the scales tensor.
  • ​scales_layout (Layout): Layout of the scales LayoutTensor.
  • ​SF_VECTOR_SIZE (Int): Number of elements each scale factor covers.

Args:

Returns:

Scalar[scales_dtype]: The scale factor stored at the translated 5D coordinate.

def get_scale_factor[scales_dtype: DType, //, SF_VECTOR_SIZE: Int](scales_tensor: TileTensor[scales_dtype, Storage=scales_tensor.Storage, address_space=scales_tensor.address_space, linear_idx_type=scales_tensor.linear_idx_type], row_idx: Int, col_idx: Int) -> Scalar[scales_dtype]

Loads a scale factor from a 5D non-batched TileTensor at the given row and column.

TileTensor overload of get_scale_factor that translates the linear (row_idx, col_idx) coordinates into the 5D scale-factor layout and returns the stored scale factor.

Parameters:

  • ​scales_dtype (DType): Element type of the scales tensor.
  • ​SF_VECTOR_SIZE (Int): Number of elements each scale factor covers.

Args:

Returns:

Scalar[scales_dtype]: The scale factor stored at the translated 5D coordinate.