Skip to main content

Mojo struct

PrefetchRW

@register_passable(trivial)

Prefetch read or write.

Aliases

  • READ = PrefetchRW(0): Read prefetch.
  • WRITE = PrefetchRW(1): Write prefetch.

Fields

  • value (SIMD[int32, 1]): The read-write prefetch. It should be in [0, 1].

Implemented traits

AnyType

Methods

__init__

__init__(out self, value: Int)

Constructs a prefetch read-write option.

Args:

  • value (Int): An integer value representing the prefetch read-write option to be used. Should be a value in the range [0, 1].