Skip to main content
Log in

Mojo struct

ConstantMemoryMapping

@register_passable(trivial) struct ConstantMemoryMapping

Represents a mapping of constant memory between host and device.

This struct encapsulates the information needed to manage constant memory that can be accessed by GPU kernels. Constant memory provides a fast, read-only cache accessible by all threads on the GPU device.

Attributes: name: A string identifier for the constant memory mapping. ptr: Pointer to the memory location. byte_count: Size of the memory mapping in bytes.

Fields

  • name (StringLiteral): A string identifier for the constant memory mapping.
  • ptr (UnsafePointer[NoneType]): Pointer to the host memory location that will be mapped to device constant memory.
  • byte_count (Int): Size of the memory mapping in bytes.

Implemented traits

AnyType, CollectionElement, Copyable, ExplicitlyCopyable, Movable, UnknownDestructibility

Methods

__init__

__init__(name: StringLiteral, ptr: UnsafePointer[NoneType], byte_count: Int) -> Self

Initializes a new constant memory mapping.

Args:

  • name (StringLiteral): A string identifier for the constant memory mapping.
  • ptr (UnsafePointer[NoneType]): Pointer to the memory location to be mapped.
  • byte_count (Int): Size of the memory mapping in bytes.