Beaver.MLIR.Context (beaver v0.4.2)

This module defines functions creating or destroying MLIR context.

Summary

Functions

Create a MLIR context. By default it registers and loads all dialects.

Run a function with a registry appended to the context.

Types

context_option()

@type context_option() ::
  {:allow_unregistered, boolean()} | {:all_dialects, boolean()}

t()

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

Functions

create(opts \\ [])

@spec create([context_option()]) :: t()

Create a MLIR context. By default it registers and loads all dialects.

destroy(ctx)

See Beaver.MLIR.CAPI.mlirContextDestroy/1.

make(value)

register_translations(ctx)

See Beaver.MLIR.CAPI.mlirRegisterAllLLVMTranslations/1.

with_registry(ctx, fun)

Run a function with a registry appended to the context.