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

strided_store

strided_store[dtype: DType, //, simd_width: Int](value: SIMD[dtype, simd_width], addr: UnsafePointer[Scalar[dtype], address_space=addr.address_space], stride: Int, mask: SIMD[DType.bool, simd_width] = SIMD(fill=True))

Loads values from addr according to a specific stride.

Parameters:

  • dtype (DType): DType of value, the value to store.
  • simd_width (Int): The width of the SIMD vectors.

Args: