Beaver.MLIR.Pass behaviour (beaver v0.4.2)

This module defines functions working with MLIR Pass.

Summary

Types

state()

@type state() :: any()

t()

@type t() :: %Beaver.MLIR.Pass{ref: term()}

Callbacks

clone(state)

(optional)
@callback clone(state :: state()) :: state()

destruct(state)

(optional)
@callback destruct(state :: state()) :: :ok

initialize(ctx, state)

(optional)
@callback initialize(ctx :: Beaver.MLIR.Context.t(), state :: state()) ::
  {:ok, state()} | {:error, state()}

run(op, state)

@callback run(op :: Beaver.MLIR.Operation.t(), state :: state()) :: state()

Functions

create(argument, desc, op, callbacks)

make(value)