Skip to main content

function

op

op(name: StringLiteral, priority: Int = 0)

Registers a function as a graph op.

You can use this to override ops implemented in MAX Engine (regardless of whether the model is from PyTorch, ONNX, or MAX Graph), or to define completely custom ops for use with MAX Graph.

A function with this decorator must have a signature as follows:

  • All arguments are Tensor types.
  • The return type is a single Tensor.
  • It does not raise any exceptions.

For example, this registers my_op as an override implementation of the mo.add op:

from max.extensibility import Tensor
from max import register

@register.op("mo.add")
fn my_add[
type: DType, rank: Int
](x: Tensor[type, rank], y: Tensor[type, rank]) -> Tensor[type, rank]:

Args:

  • name (StringLiteral): The name of the op to register.
  • priority (Int): The priority of the op. If there are multiple registered ops for the same op, this is used to determine which one to use in the graph (the highest value wins). You normally don't need to use this. It's only necessary if you're overriding another op override or custom op.