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 struct

ScheduleEntry

struct ScheduleEntry

An operation placed at a specific position in the schedule.

Fields: op: The operation descriptor. time_slot: Ordinal position within the phase (0-indexed). phase: Which phase this entry belongs to (PROLOGUE, KERNEL, EPILOGUE). is_prefetch: If True, this op is only emitted when there is a next iteration (i.e., conditional on k < K - 2*BK).

Fields​

  • ​op (OpDesc):
  • ​time_slot (Int):
  • ​phase (Phase):
  • ​is_prefetch (Bool):

Implemented traits​

AnyType, Copyable, ImplicitlyCopyable, ImplicitlyDestructible, Movable

Methods​

__init__​

__init__(out self, *, op: OpDesc, time_slot: Int, phase: Phase, is_prefetch: Bool)