Crates.io | melior-macro |
lib.rs | melior-macro |
version | 0.12.0 |
source | src |
created_at | 2023-05-08 10:26:14.407558 |
updated_at | 2024-09-24 13:46:24.978571 |
description | Internal macros for Melior |
homepage | |
repository | https://github.com/raviqqe/melior |
max_upload_size | |
id | 859663 |
size | 94,531 |
Melior is the MLIR bindings for Rust. It aims to provide a simple, safe, and complete API for MLIR with a reasonably sane ownership model represented by the type system in Rust.
This crate is a wrapper of the MLIR C API.
use melior::{
Context,
dialect::{arith, DialectRegistry, func},
ir::{*, attribute::{StringAttribute, TypeAttribute}, r#type::FunctionType},
utility::register_all_dialects,
};
let registry = DialectRegistry::new();
register_all_dialects(®istry);
let context = Context::new();
context.append_dialect_registry(®istry);
context.load_all_available_dialects();
let location = Location::unknown(&context);
let module = Module::new(location);
let index_type = Type::index(&context);
module.body().append_operation(func::func(
&context,
StringAttribute::new(&context, "add"),
TypeAttribute::new(FunctionType::new(&context, &[index_type, index_type], &[index_type]).into()),
{
let block = Block::new(&[(index_type, location), (index_type, location)]);
let sum = block.append_operation(arith::addi(
block.argument(0).unwrap().into(),
block.argument(1).unwrap().into(),
location
));
block.append_operation(func::r#return( &[sum.result(0).unwrap().into()], location));
let region = Region::new();
region.append_block(block);
region
},
&[],
location,
));
assert!(module.as_operation().verify());
cargo add melior
LLVM/MLIR 17 needs to be installed on your system. On Linux and macOS, you can install it via Homebrew.
brew install llvm@17
On GitHub Pages.
Contribution is welcome! But, Melior is still in the alpha stage as well as the MLIR C API. Note that the API is unstable and can have breaking changes in the future.
&T
for MLIR objects instead of &mut T
to mitigate the intricacy of representing a loose ownership model of the MLIR C API in Rust.Mlir<X>
objects are named <X>
if they have no destructor. Otherwise, they are named <X>
for owned objects and <X>Ref
for borrowed references.mlir<X>Create
functions are renamed as <X>::new
.mlir<X>Get<Y>
functions are renamed as follows:
&self
, they are named <X>::as_<Y>
.<X>::<Y>
and may have arguments, such as position indices.Although Melior aims to be completely type safe, some part of the current API is not.
&self
rather than &mut self
to
return such references.Region::append_block()
RefCell
, for the objects.