2018-10-25 00:47:36 +08:00
|
|
|
# MLIR Specification
|
|
|
|
|
|
|
|
MLIR is a compiler intermediate representation with similarities to traditional
|
|
|
|
three-address SSA representations (like
|
|
|
|
[LLVM IR](http://llvm.org/docs/LangRef.html) or
|
|
|
|
[SIL](https://github.com/apple/swift/blob/master/docs/SIL.rst)), but which
|
|
|
|
introduces notions from polyhedral loop optimization as first-class concepts.
|
|
|
|
This hybrid design is optimized to represent, analyze, and transform high level
|
|
|
|
dataflow graphs as well as target-specific code generated for high performance
|
|
|
|
data parallel systems. Beyond its representational capabilities, its single
|
|
|
|
continuous design provides a framework to lower from dataflow graphs to
|
|
|
|
high-performance target-specific code.
|
|
|
|
|
|
|
|
MLIR stands for one of "Multi-Level IR" or "Multi-dimensional Loop IR" or
|
|
|
|
"Machine Learning IR" - the MLIR team prefers the first interpretation. This
|
|
|
|
document defines and describes the key concepts in MLIR, and is intended to be a
|
2019-04-04 05:05:23 +08:00
|
|
|
dry reference document - [rationale documentation](Rationale.md) and other
|
|
|
|
content is hosted elsewhere.
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
MLIR is designed to be used in three different forms: a human-readable textual
|
|
|
|
form suitable for debugging, an in-memory form suitable for programmatic
|
|
|
|
transformations and analysis, and a compact serialized form suitable for storage
|
|
|
|
and transport. The different forms all describe the same semantic content. This
|
|
|
|
document describes the human-readable textual form.
|
|
|
|
|
|
|
|
[TOC]
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
## High-Level Structure
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
The top-level unit of code in MLIR is a [Module](#module). A module contains a
|
2019-01-03 04:32:30 +08:00
|
|
|
list of [Functions](#functions). Functions are represented as a composition of
|
2019-04-05 23:19:42 +08:00
|
|
|
[Operations](#operations) and contain a Control Flow Graph (CFG) of
|
2019-03-30 04:15:06 +08:00
|
|
|
[Blocks](#blocks), which contain operations and end with
|
2019-01-03 04:32:30 +08:00
|
|
|
[terminator operations](#terminator-operations) (like branches).
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
MLIR is an
|
|
|
|
[SSA-based](https://en.wikipedia.org/wiki/Static_single_assignment_form) IR,
|
|
|
|
which means that values are defined before use and have scope defined by their
|
|
|
|
dominance relations. Operations may produce zero or more results, and each is a
|
|
|
|
distinct SSA value with its own type defined by the [type system](#type-system).
|
|
|
|
|
2019-03-26 01:14:34 +08:00
|
|
|
MLIR incorporates polyhedral compiler concepts, including `affine.for` and
|
|
|
|
`affine.if` operations defined by the [affine dialect](Dialects/Affine.md),
|
|
|
|
which model affine loops and affine conditionals. It also includes affine maps
|
|
|
|
integrated into the type system - they are key to the representation of data and
|
2019-02-06 08:29:25 +08:00
|
|
|
[MemRefs](#memref-type), which are the representation for tensors in addressable
|
|
|
|
memory. MLIR also supports a first-class Tensor type allowing it to concisely
|
|
|
|
represent operations on N-dimensional arrays.
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
Finally, MLIR supports operations for allocating buffers, producing views to
|
|
|
|
transform them, represent target-independent arithmetic, target-specific
|
2019-03-30 04:15:06 +08:00
|
|
|
operations, and even supports arbitrary user-defined high-level tensor
|
2018-10-25 00:47:36 +08:00
|
|
|
operations.
|
|
|
|
|
|
|
|
Here's an example of an MLIR module:
|
|
|
|
|
2018-11-14 23:52:12 +08:00
|
|
|
```mlir {.mlir}
|
2019-01-03 04:32:30 +08:00
|
|
|
// Compute A*B using an implementation of multiply kernel and print the
|
2018-10-25 00:47:36 +08:00
|
|
|
// result using a TensorFlow op. The dimensions of A and B are partially
|
|
|
|
// known. The shapes are assumed to match.
|
2019-01-03 04:32:30 +08:00
|
|
|
func @mul(%A: tensor<100x?xf32>, %B: tensor<?x50xf32>) -> (tensor<100x50xf32>) {
|
2018-10-25 00:47:36 +08:00
|
|
|
// Compute the inner dimension of %A using the dim operation.
|
|
|
|
%n = dim %A, 1 : tensor<100x?xf32>
|
|
|
|
|
|
|
|
// Allocate addressable "buffers" and copy tensors %A and %B into them.
|
2019-02-21 06:12:21 +08:00
|
|
|
%A_m = alloc(%n) : memref<100x?xf32>
|
2018-10-25 00:47:36 +08:00
|
|
|
tensor_store %A to %A_m : memref<100x?xf32>
|
|
|
|
|
2019-02-21 06:12:21 +08:00
|
|
|
%B_m = alloc(%n) : memref<?x50xf32>
|
2018-10-25 00:47:36 +08:00
|
|
|
tensor_store %B to %B_m : memref<?x50xf32>
|
|
|
|
|
2019-02-06 08:29:25 +08:00
|
|
|
// Call function @multiply passing memrefs as arguments,
|
2018-10-25 00:47:36 +08:00
|
|
|
// and getting returned the result of the multiplication.
|
|
|
|
%C_m = call @multiply(%A_m, %B_m)
|
|
|
|
: (memref<100x?xf32>, memref<?x50xf32>) -> (memref<100x50xf32>)
|
|
|
|
|
|
|
|
dealloc %A_m : memref<100x?xf32>
|
|
|
|
dealloc %B_m : memref<?x50xf32>
|
|
|
|
|
|
|
|
// Load the buffer data into a higher level "tensor" value.
|
|
|
|
%C = tensor_load %C_m : memref<100x50xf32>
|
|
|
|
dealloc %C_m : memref<100x50xf32>
|
|
|
|
|
|
|
|
// Call TensorFlow built-in function to print the result tensor.
|
|
|
|
"tf.Print"(%C){message: "mul result"}
|
|
|
|
: (tensor<100x50xf32) -> (tensor<100x50xf32>)
|
|
|
|
|
|
|
|
return %C : tensor<100x50xf32>
|
|
|
|
}
|
|
|
|
|
2019-01-03 04:32:30 +08:00
|
|
|
// A function that multiplies two memrefs and returns the result.
|
|
|
|
func @multiply(%A: memref<100x?xf32>, %B: memref<?x50xf32>)
|
2018-10-25 00:47:36 +08:00
|
|
|
-> (memref<100x50xf32>) {
|
|
|
|
// Compute the inner dimension of %A.
|
|
|
|
%n = dim %A, 1 : memref<100x?xf32>
|
|
|
|
|
|
|
|
// Allocate memory for the multiplication result.
|
2019-02-21 06:12:21 +08:00
|
|
|
%C = alloc() : memref<100x50xf32>
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
// Multiplication loop nest.
|
2019-03-26 01:14:34 +08:00
|
|
|
affine.for %i = 0 to 100 {
|
|
|
|
affine.for %j = 0 to 50 {
|
2018-10-25 00:47:36 +08:00
|
|
|
store 0 to %C[%i, %j] : memref<100x50xf32>
|
2019-03-26 01:14:34 +08:00
|
|
|
affine.for %k = 0 to %n {
|
2018-10-25 00:47:36 +08:00
|
|
|
%a_v = load %A[%i, %k] : memref<100x?xf32>
|
|
|
|
%b_v = load %B[%k, %j] : memref<?x50xf32>
|
2019-01-03 04:32:30 +08:00
|
|
|
%prod = mulf %a_v, %b_v : f32
|
2018-10-25 00:47:36 +08:00
|
|
|
%c_v = load %C[%i, %j] : memref<100x50xf32>
|
2019-01-03 04:32:30 +08:00
|
|
|
%sum = addf %c_v, %prod : f32
|
|
|
|
store %sum, %C[%i, %j] : memref<100x50xf32>
|
2018-10-25 00:47:36 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return %C : memref<100x50xf32>
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
## Notation
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
MLIR has a simple and unambiguous grammar, allowing it to reliably round-trip
|
|
|
|
through a textual form. This is important for development of the compiler - e.g.
|
|
|
|
understanding the state of code as it is being transformed and for writing test
|
|
|
|
cases.
|
|
|
|
|
|
|
|
This document describes the grammar using
|
|
|
|
[Extended Backus-Naur Form (EBNF)](https://en.wikipedia.org/wiki/Extended_Backus%E2%80%93Naur_form).
|
|
|
|
|
|
|
|
This is the EBNF grammar used in this document, presented in yellow boxes.
|
|
|
|
|
|
|
|
``` {.ebnf}
|
|
|
|
alternation ::= expr0 | expr1 | expr2 // Either expr0 or expr1 or expr2.
|
|
|
|
sequence ::= expr0 expr1 expr2 // Sequence of expr0 expr1 expr2.
|
|
|
|
repetition0 ::= expr* // 0 or more occurrences.
|
|
|
|
repetition1 ::= expr+ // 1 or more occurrences.
|
|
|
|
optionality ::= expr? // 0 or 1 occurrence.
|
|
|
|
grouping ::= (expr) // Everything inside parens is grouped together.
|
|
|
|
literal ::= `abcd` // Matches the literal `abcd`.
|
|
|
|
```
|
|
|
|
|
|
|
|
Code examples are presented in blue boxes.
|
|
|
|
|
2018-11-14 23:52:12 +08:00
|
|
|
```mlir {.mlir}
|
2018-10-25 00:47:36 +08:00
|
|
|
// This is an example use of the grammar above:
|
|
|
|
// This matches things like: ba, bana, boma, banana, banoma, bomana...
|
|
|
|
example ::= `b` (`an` | `om`)* `a`
|
|
|
|
```
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
### Common syntax
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
The following core grammar productions are used in this document:
|
|
|
|
|
|
|
|
``` {.ebnf}
|
|
|
|
// TODO: Clarify the split between lexing (tokens) and parsing (grammar).
|
|
|
|
digit ::= [0-9]
|
|
|
|
hex_digit ::= [0-9a-fA-F]
|
|
|
|
letter ::= [a-zA-Z]
|
|
|
|
id-punct ::= [$._-]
|
|
|
|
|
2019-02-08 00:36:50 +08:00
|
|
|
integer-literal ::= decimal-literal | hexadecimal-literal
|
|
|
|
decimal-literal ::= digit+
|
|
|
|
hexadecimal-literal ::= `0x` hex_digit+
|
2018-10-25 00:47:36 +08:00
|
|
|
float-literal ::= TODO
|
|
|
|
string-literal ::= `"` [^"\n\f\v\r]* `"` TODO define escaping rules
|
|
|
|
```
|
|
|
|
|
|
|
|
Not listed here, but MLIR does support comments. They use standard BCPL syntax,
|
|
|
|
starting with a `//` and going until the end of the line.
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
### Identifiers and keywords
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
Syntax:
|
|
|
|
|
|
|
|
``` {.ebnf}
|
|
|
|
// Identifiers
|
2019-02-27 08:43:12 +08:00
|
|
|
bare-id ::= (letter|[_]) (letter|digit|[_$.])*
|
2018-10-25 00:47:36 +08:00
|
|
|
bare-id-list ::= bare-id (`,` bare-id)*
|
|
|
|
suffix-id ::= digit+ | ((letter|id-punct) (letter|id-punct|digit)*)
|
|
|
|
|
|
|
|
function-id ::= `@` bare-id
|
|
|
|
ssa-id ::= `%` suffix-id
|
|
|
|
ssa-id-list ::= ssa-id (`,` ssa-id)*
|
|
|
|
|
2019-03-30 04:15:06 +08:00
|
|
|
// Uses of an SSA value, e.g. in an operand list to an operation.
|
2018-10-25 00:47:36 +08:00
|
|
|
ssa-use ::= ssa-id
|
|
|
|
ssa-use-list ::= ssa-use (`,` ssa-use)*
|
|
|
|
```
|
|
|
|
|
|
|
|
Identifiers name entities such as SSA values, types and functions, and are
|
|
|
|
chosen by the writer of MLIR code. Identifiers may be descriptive (e.g.
|
|
|
|
`%batch_size`, `@matmul`), or may be non-descriptive when they are
|
|
|
|
auto-generated (e.g. `%23`, `@func42`). Identifier names for SSA values may be
|
|
|
|
used in an MLIR text file but are not persisted as part of the IR - the printer
|
|
|
|
will give them anonymous names like `%42`.
|
|
|
|
|
|
|
|
MLIR guarantees identifiers never collide with keywords by prefixing identifiers
|
2019-04-06 10:36:42 +08:00
|
|
|
with a sigil (e.g. `%`, `#`, `@`, `^`, `!`). In certain unambiguous contexts
|
|
|
|
(e.g. affine expressions), identifiers are not prefixed, for brevity. New
|
|
|
|
keywords may be added to future versions of MLIR without danger of collision
|
|
|
|
with existing identifiers.
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
The scope of SSA values is defined based on the standard definition of
|
|
|
|
[dominance](https://en.wikipedia.org/wiki/Dominator_\(graph_theory\)). Argument
|
|
|
|
identifiers in mapping functions are in scope for the mapping body. Function
|
|
|
|
identifiers and mapping identifiers are visible across the entire module.
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
## Polyhedral Structures
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
MLIR uses techniques from polyhedral compilation to make dependence analysis and
|
|
|
|
loop transformations efficient and reliable. This section introduces some of the
|
|
|
|
core concepts that are used throughout the document.
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
### Dimensions and Symbols
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
Dimensions and symbols are the two kinds of identifiers that can appear in the
|
2019-04-05 23:19:42 +08:00
|
|
|
polyhedral structures, and are always of [`index`](#index-type) type. Dimensions
|
Enable arithmetics for index types.
Arithmetic and comparison instructions are necessary to implement, e.g.,
control flow when lowering MLFunctions to CFGFunctions. (While it is possible
to replace some of the arithmetics by affine_apply instructions for loop
bounds, it is still necessary for loop bounds checking, steps, if-conditions,
non-trivial memref subscripts, etc.) Furthermore, working with indirect
accesses in, e.g., lookup tables for large embeddings, may require operating on
tensors of indexes. For example, the equivalents to C code "LUT[Index[i]]" or
"ResultIndex[i] = i + j" where i, j are loop induction variables require the
arithmetics on indices as well as the possibility to operate on tensors
thereof. Allow arithmetic and comparison operations to apply to index types by
declaring them integer-like. Allow tensors whose element type is index for
indirection purposes.
The absence of vectors with "index" element type is explicitly tested, but the
only justification for this restriction in the CL introducing the test is
"because we don't need them". Do NOT enable vectors of index types, although
it makes vector and tensor types inconsistent with respect to allowed element
types.
PiperOrigin-RevId: 220614055
2018-11-08 20:04:32 +08:00
|
|
|
are declared in parentheses and symbols are declared in square brackets.
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
2018-11-14 23:52:12 +08:00
|
|
|
```mlir {.mlir}
|
2018-10-25 00:47:36 +08:00
|
|
|
// A 2d to 3d affine mapping.
|
|
|
|
// d0/d1 are dimensions, s0 is a symbol
|
|
|
|
#affine_map2to3 = (d0, d1)[s0] -> (d0, d1 + s0, d1 - s0) size (10, 20, 30)
|
|
|
|
```
|
|
|
|
|
|
|
|
Dimensional identifiers correspond to the dimensions of the underlying structure
|
|
|
|
being represented (a map, set, or more concretely a loop nest or a tensor); for
|
|
|
|
example, a three-dimensional loop nest has three dimensional identifiers. Symbol
|
|
|
|
identifiers represent an unknown quantity that can be treated as constant for a
|
|
|
|
region of interest.
|
|
|
|
|
|
|
|
Dimensions and symbols are bound to SSA values by various operations in MLIR and
|
|
|
|
use the same parenthesized vs square bracket list to distinguish the two.
|
|
|
|
|
|
|
|
Syntax:
|
|
|
|
|
|
|
|
``` {.ebnf}
|
|
|
|
// Uses of SSA values that are passed to dimensional identifiers.
|
|
|
|
dim-use-list ::= `(` ssa-use-list? `)`
|
|
|
|
|
|
|
|
// Uses of SSA values that are used to bind symbols.
|
|
|
|
symbol-use-list ::= `[` ssa-use-list? `]`
|
|
|
|
|
|
|
|
// Most things that bind SSA values bind dimensions and symbols.
|
|
|
|
dim-and-symbol-use-list ::= dim-use-list symbol-use-list?
|
|
|
|
```
|
|
|
|
|
|
|
|
SSA values bound to dimensions and symbols must always have 'index' type.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
2018-11-14 23:52:12 +08:00
|
|
|
```mlir {.mlir}
|
2018-10-25 00:47:36 +08:00
|
|
|
#affine_map2to3 = (d0, d1)[s0] -> (d0, d1 + s0, d1 - s0) size (10,20,30)
|
|
|
|
// Binds %N to the s0 symbol in affine_map2to3.
|
|
|
|
%x = alloc()[%N] : memref<40x50xf32, #affine_map2to3>
|
|
|
|
```
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
### Affine Expressions
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
Syntax:
|
|
|
|
|
|
|
|
``` {.ebnf}
|
|
|
|
affine-expr ::= `(` affine-expr `)`
|
|
|
|
| affine-expr `+` affine-expr
|
|
|
|
| affine-expr `-` affine-expr
|
|
|
|
| `-`? integer-literal `*` affine-expr
|
|
|
|
| affine-expr `ceildiv` integer-literal
|
|
|
|
| affine-expr `floordiv` integer-literal
|
|
|
|
| affine-expr `mod` integer-literal
|
|
|
|
| `-`affine-expr
|
|
|
|
| bare-id
|
|
|
|
| `-`? integer-literal
|
|
|
|
|
|
|
|
multi-dim-affine-expr ::= `(` affine-expr (`,` affine-expr)* `)`
|
|
|
|
```
|
|
|
|
|
|
|
|
`ceildiv` is the ceiling function which maps the result of the division of its
|
|
|
|
first argument by its second argument to the smallest integer greater than or
|
|
|
|
equal to that result. `floordiv` is a function which maps the result of the
|
|
|
|
division of its first argument by its second argument to the largest integer
|
|
|
|
less than or equal to that result. `mod` is the modulo operation: since its
|
|
|
|
second argument is always positive, its results are always positive in our
|
|
|
|
usage. The `integer-literal` operand for ceildiv, floordiv, and mod is always
|
|
|
|
expected to be positive. `bare-id` is an identifier which must have type
|
Enable arithmetics for index types.
Arithmetic and comparison instructions are necessary to implement, e.g.,
control flow when lowering MLFunctions to CFGFunctions. (While it is possible
to replace some of the arithmetics by affine_apply instructions for loop
bounds, it is still necessary for loop bounds checking, steps, if-conditions,
non-trivial memref subscripts, etc.) Furthermore, working with indirect
accesses in, e.g., lookup tables for large embeddings, may require operating on
tensors of indexes. For example, the equivalents to C code "LUT[Index[i]]" or
"ResultIndex[i] = i + j" where i, j are loop induction variables require the
arithmetics on indices as well as the possibility to operate on tensors
thereof. Allow arithmetic and comparison operations to apply to index types by
declaring them integer-like. Allow tensors whose element type is index for
indirection purposes.
The absence of vectors with "index" element type is explicitly tested, but the
only justification for this restriction in the CL introducing the test is
"because we don't need them". Do NOT enable vectors of index types, although
it makes vector and tensor types inconsistent with respect to allowed element
types.
PiperOrigin-RevId: 220614055
2018-11-08 20:04:32 +08:00
|
|
|
[index](#index-type). The precedence of operations in an affine expression are
|
2018-10-25 00:47:36 +08:00
|
|
|
ordered from highest to lowest in the order: (1) parenthesization, (2) negation,
|
|
|
|
(3) modulo, multiplication, floordiv, and ceildiv, and (4) addition and
|
|
|
|
subtraction. All of these operators associate from left to right.
|
|
|
|
|
|
|
|
A _multi-dimensional affine expression_ is a comma separated list of
|
|
|
|
one-dimensional affine expressions, with the entire list enclosed in
|
|
|
|
parentheses.
|
|
|
|
|
|
|
|
**Context:** An affine function, informally, is a linear function plus a
|
|
|
|
constant. More formally, a function f defined on a vector $$\vec{v} \in
|
|
|
|
\mathbb{Z}^n$$ is a multidimensional affine function of $$\vec{v}$$ if
|
|
|
|
$$f(\vec{v})$$ can be expressed in the form $$M \vec{v} + \vec{c}$$ where $$M$$
|
|
|
|
is a constant matrix from $$\mathbb{Z}^{m \times n}$$ and $$\vec{c}$$ is a
|
|
|
|
constant vector from $$\mathbb{Z}$$. $$m$$ is the dimensionality of such an
|
|
|
|
affine function. MLIR further extends the definition of an affine function to
|
|
|
|
allow 'floordiv', 'ceildiv', and 'mod' with respect to positive integer
|
|
|
|
constants. Such extensions to affine functions have often been referred to as
|
|
|
|
quasi-affine functions by the polyhedral compiler community. MLIR uses the term
|
|
|
|
'affine map' to refer to these multi-dimensional quasi-affine functions. As
|
|
|
|
examples, $$(i+j+1, j)$$, $$(i \mod 2, j+i)$$, $$(j, i/4, i \mod 4)$$, $$(2i+1,
|
|
|
|
j)$$ are two-dimensional affine functions of $$(i, j)$$, but $$(i \cdot j,
|
|
|
|
i^2)$$, $$(i \mod j, i/j)$$ are not affine functions of $$(i, j)$$.
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
### Affine Maps
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
Syntax:
|
|
|
|
|
|
|
|
``` {.ebnf}
|
|
|
|
affine-map-inline
|
|
|
|
::= dim-and-symbol-id-lists `->` multi-dim-affine-expr
|
|
|
|
( `size` `(` dim-size (`,` dim-size)* `)` )?
|
|
|
|
|
|
|
|
dim-size ::= affine-expr
|
|
|
|
| `min` `(` affine-expr ( `,` affine-expr)+ `)`
|
|
|
|
```
|
|
|
|
|
|
|
|
The identifiers in the dimensions and symbols lists must be unique. These are
|
|
|
|
the only identifiers that may appear in 'multi-dim-affine-expr'. In addition,
|
|
|
|
only symbolic identifiers and constants can appear in 'dim-size'. Affine maps
|
|
|
|
with one or more symbols in its specification are known as "symbolic affine
|
|
|
|
maps", and those with no symbols as "non-symbolic affine maps". An affine map
|
|
|
|
has an optional "size" tuple which provides the size for each corresponding
|
|
|
|
dimension. Affine maps with a size in their specification are known as "bounded
|
|
|
|
affine maps", and those without a size are "unbounded affine maps".
|
|
|
|
|
|
|
|
**Context:** Affine maps are mathematical functions that transform a list of
|
|
|
|
dimension indices and symbols into a list of results, with affine expressions
|
|
|
|
combining the indices and symbols. Affine maps distinguish between
|
|
|
|
[indices and symbols](#dimensions-and-symbols) because indices are inputs to the
|
2019-02-06 08:29:25 +08:00
|
|
|
affine map when the latter may be called through an operation, such as
|
2019-04-05 23:19:42 +08:00
|
|
|
[affine.apply](Dialects/Affine.md#affineapply-operation) operation, whereas
|
2019-02-06 08:29:25 +08:00
|
|
|
symbols are bound when an affine mapping is established (e.g. when a memref is
|
|
|
|
formed, establishing a memory [layout map](#layout-map)).
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
Affine maps are used for various core structures in MLIR. The restrictions we
|
|
|
|
impose on their form allows powerful analysis and transformation, while keeping
|
|
|
|
the representation closed with respect to several operations of interest.
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
#### Named affine mappings
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
Syntax:
|
|
|
|
|
|
|
|
``` {.ebnf}
|
|
|
|
affine-map-id ::= `#` suffix-id
|
|
|
|
|
|
|
|
// Definitions of affine maps are at the top of the file.
|
|
|
|
affine-map-def ::= affine-map-id `=` affine-map-inline
|
|
|
|
module-header-def ::= affine-map-def
|
|
|
|
|
|
|
|
// Uses of affine maps may use the inline form or the named form.
|
|
|
|
affine-map ::= affine-map-id | affine-map-inline
|
|
|
|
```
|
|
|
|
|
|
|
|
Affine mappings may be defined inline at the point of use, or may be hoisted to
|
|
|
|
the top of the file and given a name with an affine map definition, and used by
|
|
|
|
name.
|
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
2018-11-14 23:52:12 +08:00
|
|
|
```mlir {.mlir}
|
2018-10-25 00:47:36 +08:00
|
|
|
// Affine map out-of-line definition and usage example.
|
|
|
|
#affine_map42 =
|
|
|
|
(d0, d1)[s0] -> (d0, d0 + d1 + floordiv(s0,2)) size (10, s0)
|
|
|
|
|
2019-03-30 04:15:06 +08:00
|
|
|
// Use an affine mapping definition in an alloc operation, binding the
|
2018-10-25 00:47:36 +08:00
|
|
|
// SSA value %N to the symbol s0.
|
2019-02-21 06:12:21 +08:00
|
|
|
%a = alloc()[%N] : memref<4x4xf32, #affine_map42>
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
// Same thing with an inline affine mapping definition.
|
2019-02-21 06:12:21 +08:00
|
|
|
%b = alloc()[%N] : memref<4x4xf32, (d0, d1)[s0] -> (d0, d0 + d1 + floordiv(s0,2))
|
|
|
|
size (10, s0)>
|
2018-10-25 00:47:36 +08:00
|
|
|
```
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
### Semi-affine maps
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
Semi-affine maps are extensions of affine maps to allow multiplication,
|
|
|
|
`floordiv`, `ceildiv`, and `mod` with respect to symbolic identifiers.
|
|
|
|
Semi-affine maps are thus a strict superset of affine maps.
|
|
|
|
|
|
|
|
Syntax of semi-affine expressions:
|
|
|
|
|
|
|
|
``` {.ebnf}
|
|
|
|
semi-affine-expr ::= `(` semi-affine-expr `)`
|
|
|
|
| semi-affine-expr `+` semi-affine-expr
|
|
|
|
| semi-affine-expr `-` semi-affine-expr
|
|
|
|
| symbol-or-const `*` semi-affine-expr
|
|
|
|
| `ceildiv` `(` semi-affine-expr `,` symbol-or-const `)`
|
|
|
|
| `floordiv` `(` semi-affine-expr `,` symbol-or-const `)`
|
|
|
|
| semi-affine-expr `mod` symbol-or-const
|
|
|
|
| bare-id
|
|
|
|
| `-`? integer-literal
|
|
|
|
|
|
|
|
symbol-or-const ::= `-`? integer-literal | symbol-id
|
|
|
|
|
|
|
|
multi-dim-semi-affine-expr ::= `(` semi-affine-expr (`,` semi-affine-expr)* `)`
|
|
|
|
```
|
|
|
|
|
|
|
|
The precedence and associativity of operations in the syntax above is the same
|
|
|
|
as that for [affine expressions](#affine-expressions).
|
|
|
|
|
|
|
|
Syntax of semi-affine maps:
|
|
|
|
|
|
|
|
``` {.ebnf}
|
|
|
|
semi-affine-map-inline
|
|
|
|
::= dim-and-symbol-id-lists `->` multi-dim-semi-affine-expr
|
|
|
|
( `size` `(` dim-size (`,` dim-size)* `)` )?
|
|
|
|
```
|
|
|
|
|
|
|
|
Semi-affine maps may be defined inline at the point of use, or may be hoisted to
|
|
|
|
the top of the file and given a name with a semi-affine map definition, and used
|
|
|
|
by name.
|
|
|
|
|
|
|
|
``` {.ebnf}
|
|
|
|
semi-affine-map-id ::= `#` suffix-id
|
|
|
|
|
|
|
|
// Definitions of semi-affine maps are at the top of file.
|
|
|
|
semi-affine-map-def ::= semi-affine-map-id `=` semi-affine-map-inline
|
|
|
|
module-header-def ::= semi-affine-map-def
|
|
|
|
|
|
|
|
// Uses of semi-affine maps may use the inline form or the named form.
|
|
|
|
semi-affine-map ::= semi-affine-map-id | semi-affine-map-inline
|
|
|
|
```
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
### Integer Sets
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
An integer set is a conjunction of affine constraints on a list of identifiers.
|
|
|
|
The identifiers associated with the integer set are separated out into two
|
|
|
|
classes: the set's dimension identifiers, and the set's symbolic identifiers.
|
|
|
|
The set is viewed as being parametric on its symbolic identifiers. In the
|
|
|
|
syntax, the list of set's dimension identifiers are enclosed in parentheses
|
|
|
|
while its symbols are enclosed in square brackets.
|
|
|
|
|
|
|
|
Syntax of affine constraints:
|
|
|
|
|
|
|
|
``` {.ebnf}
|
|
|
|
affine-constraint ::= affine-expr `>=` `0`
|
|
|
|
| affine-expr `==` `0`
|
2019-01-15 12:50:47 +08:00
|
|
|
affine-constraint-conjunction ::= affine-constraint (`,` affine-constraint)*
|
2018-10-25 00:47:36 +08:00
|
|
|
```
|
|
|
|
|
|
|
|
Integer sets may be defined inline at the point of use, or may be hoisted to the
|
|
|
|
top of the file and given a name with an integer set definition, and used by
|
|
|
|
name.
|
|
|
|
|
|
|
|
``` {.ebnf}
|
|
|
|
integer-set-id ::= `#` suffix-id
|
|
|
|
|
|
|
|
integer-set-inline
|
2019-02-03 13:01:11 +08:00
|
|
|
::= dim-and-symbol-id-lists `:` '(' affine-constraint-conjunction? ')'
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
// Declarations of integer sets are at the top of the file.
|
|
|
|
integer-set-decl ::= integer-set-id `=` integer-set-inline
|
|
|
|
|
|
|
|
// Uses of integer sets may use the inline form or the named form.
|
|
|
|
integer-set ::= integer-set-id | integer-set-inline
|
|
|
|
```
|
|
|
|
|
|
|
|
The dimensionality of an integer set is the number of identifiers appearing in
|
|
|
|
dimension list of the set. The affine-constraint non-terminals appearing in the
|
|
|
|
syntax above are only allowed to contain identifiers from dims and symbols. A
|
|
|
|
set with no constraints is a set that is unbounded along all of the set's
|
|
|
|
dimensions.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
2018-11-14 23:52:12 +08:00
|
|
|
```mlir {.mlir}
|
2018-10-25 00:47:36 +08:00
|
|
|
// A example two-dimensional integer set with two symbols.
|
|
|
|
#set42 = (d0, d1)[s0, s1]
|
|
|
|
: d0 >= 0, -d0 + s0 - 1 >= 0, d1 >= 0, -d1 + s1 - 1 >= 0
|
|
|
|
|
2019-02-06 08:29:25 +08:00
|
|
|
// Inside a Function
|
2019-03-25 11:35:07 +08:00
|
|
|
affine.if #set42(%i, %j)[%M, %N] {
|
2018-10-25 00:47:36 +08:00
|
|
|
...
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
`d0` and `d1` correspond to dimensional identifiers of the set, while `s0` and
|
|
|
|
`s1` are symbol identifiers.
|
|
|
|
|
2019-02-06 08:29:25 +08:00
|
|
|
### Affine Dialect
|
|
|
|
|
|
|
|
MLIR provides a first class set of polyhedral operations and analyses within the
|
|
|
|
[affine dialect](Dialects/Affine.md).
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
## Type System
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
Each SSA value in MLIR has a type defined by the type system below. There are a
|
|
|
|
number of primitive types (like integers) and also aggregate types for tensors
|
2019-04-07 10:31:19 +08:00
|
|
|
and memory buffers. MLIR standard types do not include structures, arrays, or
|
|
|
|
dictionaries.
|
2018-10-25 00:47:36 +08:00
|
|
|
|
2019-01-08 01:59:55 +08:00
|
|
|
MLIR has an open type system (there is no fixed list of types), and types may
|
|
|
|
have application-specific semantics. For example, MLIR supports a set of
|
|
|
|
[standard types](#standard-types) as well as
|
|
|
|
[dialect-specific types](#dialect-specific-types).
|
2019-01-03 04:32:30 +08:00
|
|
|
|
2018-10-25 00:47:36 +08:00
|
|
|
``` {.ebnf}
|
2019-02-06 03:47:02 +08:00
|
|
|
type ::= non-function-type
|
2018-10-25 00:47:36 +08:00
|
|
|
| function-type
|
|
|
|
|
2019-02-06 03:47:02 +08:00
|
|
|
non-function-type ::= integer-type
|
|
|
|
| index-type
|
|
|
|
| float-type
|
|
|
|
| vector-type
|
|
|
|
| tensor-type
|
|
|
|
| memref-type
|
|
|
|
| dialect-type
|
|
|
|
| type-alias
|
2019-03-30 13:23:34 +08:00
|
|
|
| complex-type
|
|
|
|
| tuple-type
|
2019-04-28 09:35:04 +08:00
|
|
|
| none-type
|
2019-02-06 03:47:02 +08:00
|
|
|
|
2018-10-25 00:47:36 +08:00
|
|
|
type-list-no-parens ::= type (`,` type)*
|
|
|
|
type-list-parens ::= `(` `)`
|
|
|
|
| `(` type-list-no-parens `)`
|
|
|
|
|
|
|
|
// This is a common way to refer to an SSA value with a specified type.
|
|
|
|
ssa-use-and-type ::= ssa-use `:` type
|
|
|
|
|
|
|
|
// Non-empty list of names and types.
|
|
|
|
ssa-use-and-type-list ::= ssa-use-and-type (`,` ssa-use-and-type)*
|
|
|
|
```
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
### Type Aliases
|
2019-01-08 10:42:04 +08:00
|
|
|
|
|
|
|
``` {.ebnf}
|
|
|
|
type-alias-def ::= '!' alias-name '=' 'type' type
|
|
|
|
type-alias ::= '!' alias-name
|
|
|
|
```
|
|
|
|
|
|
|
|
MLIR supports defining named aliases for types. A type alias is an identifier
|
|
|
|
that can be used in the place of the type that it defines. These aliases *must*
|
2019-04-06 10:36:42 +08:00
|
|
|
be defined before their uses. Alias names may not contain a '.', since those
|
|
|
|
names are reserved for [dialect-specific types](#dialect-specific-types).
|
2019-01-08 10:42:04 +08:00
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
```mlir {.mlir}
|
2019-04-07 10:39:53 +08:00
|
|
|
!avx_m128 = type vector<4 x f32>
|
2019-01-08 10:42:04 +08:00
|
|
|
|
|
|
|
// Using the original type.
|
|
|
|
"foo"(%x) : vector<4 x f32> -> ()
|
|
|
|
|
|
|
|
// Using the type alias.
|
2019-04-07 10:39:53 +08:00
|
|
|
"foo"(%x) : !avx_m128 -> ()
|
2019-01-08 10:42:04 +08:00
|
|
|
```
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
### Builtin Types
|
2019-01-08 01:59:55 +08:00
|
|
|
|
|
|
|
Builtin types consist of only the types needed for the validity of the IR.
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
#### Function Type
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
Syntax:
|
|
|
|
|
|
|
|
``` {.ebnf}
|
2019-03-20 01:59:02 +08:00
|
|
|
// MLIR functions can return multiple values.
|
2019-02-06 03:47:02 +08:00
|
|
|
function-result-type ::= type-list-parens
|
|
|
|
| non-function-type
|
|
|
|
|
|
|
|
function-type ::= type-list-parens `->` function-result-type
|
2018-10-25 00:47:36 +08:00
|
|
|
```
|
|
|
|
|
2019-01-08 01:59:55 +08:00
|
|
|
MLIR supports first-class functions: the
|
2019-04-05 23:19:42 +08:00
|
|
|
[`constant` operation](#constant-operation) produces the address of a function
|
2019-01-08 01:59:55 +08:00
|
|
|
as an SSA value. This SSA value may be passed to and returned from functions,
|
|
|
|
merged across control flow boundaries with [block arguments](#blocks), and
|
2019-04-05 23:19:42 +08:00
|
|
|
called with the [`call_indirect` operation](#call-indirect-operation).
|
2018-10-25 00:47:36 +08:00
|
|
|
|
2019-01-08 01:59:55 +08:00
|
|
|
Function types are also used to indicate the arguments and results of
|
|
|
|
[operations](#operations).
|
Enable arithmetics for index types.
Arithmetic and comparison instructions are necessary to implement, e.g.,
control flow when lowering MLFunctions to CFGFunctions. (While it is possible
to replace some of the arithmetics by affine_apply instructions for loop
bounds, it is still necessary for loop bounds checking, steps, if-conditions,
non-trivial memref subscripts, etc.) Furthermore, working with indirect
accesses in, e.g., lookup tables for large embeddings, may require operating on
tensors of indexes. For example, the equivalents to C code "LUT[Index[i]]" or
"ResultIndex[i] = i + j" where i, j are loop induction variables require the
arithmetics on indices as well as the possibility to operate on tensors
thereof. Allow arithmetic and comparison operations to apply to index types by
declaring them integer-like. Allow tensors whose element type is index for
indirection purposes.
The absence of vectors with "index" element type is explicitly tested, but the
only justification for this restriction in the CL introducing the test is
"because we don't need them". Do NOT enable vectors of index types, although
it makes vector and tensor types inconsistent with respect to allowed element
types.
PiperOrigin-RevId: 220614055
2018-11-08 20:04:32 +08:00
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
### Standard Types
|
2019-02-13 03:08:04 +08:00
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
#### Index Type
|
Enable arithmetics for index types.
Arithmetic and comparison instructions are necessary to implement, e.g.,
control flow when lowering MLFunctions to CFGFunctions. (While it is possible
to replace some of the arithmetics by affine_apply instructions for loop
bounds, it is still necessary for loop bounds checking, steps, if-conditions,
non-trivial memref subscripts, etc.) Furthermore, working with indirect
accesses in, e.g., lookup tables for large embeddings, may require operating on
tensors of indexes. For example, the equivalents to C code "LUT[Index[i]]" or
"ResultIndex[i] = i + j" where i, j are loop induction variables require the
arithmetics on indices as well as the possibility to operate on tensors
thereof. Allow arithmetic and comparison operations to apply to index types by
declaring them integer-like. Allow tensors whose element type is index for
indirection purposes.
The absence of vectors with "index" element type is explicitly tested, but the
only justification for this restriction in the CL introducing the test is
"because we don't need them". Do NOT enable vectors of index types, although
it makes vector and tensor types inconsistent with respect to allowed element
types.
PiperOrigin-RevId: 220614055
2018-11-08 20:04:32 +08:00
|
|
|
|
|
|
|
Syntax:
|
|
|
|
|
|
|
|
``` {.ebnf}
|
|
|
|
// Target word-sized integer.
|
|
|
|
index-type ::= `index`
|
|
|
|
```
|
|
|
|
|
2019-01-08 01:59:55 +08:00
|
|
|
The `index` type is a signless integer whose size is equal to the natural
|
|
|
|
machine word of the target ([rationale](Rationale.md#signless-types)) and is
|
|
|
|
used by the affine constructs in MLIR. Unlike fixed-size integers. It cannot be
|
|
|
|
used as an element of vector, tensor or memref type
|
2019-04-05 23:19:42 +08:00
|
|
|
([rationale](Rationale.md#index-type-disallowed-in-vectortensormemref-types)).
|
2019-01-08 01:59:55 +08:00
|
|
|
|
Enable arithmetics for index types.
Arithmetic and comparison instructions are necessary to implement, e.g.,
control flow when lowering MLFunctions to CFGFunctions. (While it is possible
to replace some of the arithmetics by affine_apply instructions for loop
bounds, it is still necessary for loop bounds checking, steps, if-conditions,
non-trivial memref subscripts, etc.) Furthermore, working with indirect
accesses in, e.g., lookup tables for large embeddings, may require operating on
tensors of indexes. For example, the equivalents to C code "LUT[Index[i]]" or
"ResultIndex[i] = i + j" where i, j are loop induction variables require the
arithmetics on indices as well as the possibility to operate on tensors
thereof. Allow arithmetic and comparison operations to apply to index types by
declaring them integer-like. Allow tensors whose element type is index for
indirection purposes.
The absence of vectors with "index" element type is explicitly tested, but the
only justification for this restriction in the CL introducing the test is
"because we don't need them". Do NOT enable vectors of index types, although
it makes vector and tensor types inconsistent with respect to allowed element
types.
PiperOrigin-RevId: 220614055
2018-11-08 20:04:32 +08:00
|
|
|
**Rationale:** integers of platform-specific bit widths are practical to express
|
|
|
|
sizes, dimensionalities and subscripts.
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
#### Integer Type
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
Syntax:
|
|
|
|
|
|
|
|
``` {.ebnf}
|
2019-01-08 01:59:55 +08:00
|
|
|
// Sized integers like i1, i4, i8, i16, i32.
|
2019-04-23 22:58:03 +08:00
|
|
|
integer-type ::= `i` [1-9][0-9]*
|
2018-10-25 00:47:36 +08:00
|
|
|
```
|
|
|
|
|
2019-01-08 01:59:55 +08:00
|
|
|
MLIR supports arbitrary precision integer types. Integer types are signless, but
|
|
|
|
have a designated width.
|
2018-10-25 00:47:36 +08:00
|
|
|
|
2019-01-08 01:59:55 +08:00
|
|
|
**Rationale:** low precision integers (like `i2`, `i4` etc) are useful for
|
|
|
|
low-precision inference chips, and arbitrary precision integers are useful for
|
|
|
|
hardware synthesis (where a 13 bit multiplier is a lot cheaper/smaller than a 16
|
|
|
|
bit one).
|
2018-10-25 00:47:36 +08:00
|
|
|
|
2019-01-08 01:59:55 +08:00
|
|
|
TODO: Need to decide on a representation for quantized integers
|
|
|
|
([initial thoughts](Rationale.md#quantized-integer-operations)).
|
2018-10-25 00:47:36 +08:00
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
#### Floating Point Types
|
2018-10-25 00:47:36 +08:00
|
|
|
|
2019-01-08 01:59:55 +08:00
|
|
|
Syntax:
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
``` {.ebnf}
|
2019-01-08 01:59:55 +08:00
|
|
|
// Floating point.
|
|
|
|
float-type ::= `f16` | `bf16` | `f32` | `f64`
|
2018-10-25 00:47:36 +08:00
|
|
|
```
|
|
|
|
|
2019-01-08 01:59:55 +08:00
|
|
|
MLIR supports float types of certain widths that are widely used as indicated
|
|
|
|
above.
|
2018-10-25 00:47:36 +08:00
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
#### Vector Type
|
2018-10-25 00:47:36 +08:00
|
|
|
|
2019-01-08 01:59:55 +08:00
|
|
|
Syntax:
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
``` {.ebnf}
|
2019-02-08 00:36:50 +08:00
|
|
|
vector-type ::= `vector` `<` static-dimension-list vector-element-type `>`
|
2018-12-12 05:49:43 +08:00
|
|
|
vector-element-type ::= float-type | integer-type
|
2018-10-25 00:47:36 +08:00
|
|
|
|
2019-02-08 00:36:50 +08:00
|
|
|
static-dimension-list ::= (decimal-literal `x`)+
|
2018-10-25 00:47:36 +08:00
|
|
|
```
|
|
|
|
|
|
|
|
The vector type represents a SIMD style vector, used by target-specific
|
2019-03-30 04:15:06 +08:00
|
|
|
operation sets like AVX. While the most common use is for 1D vectors (e.g.
|
2018-10-25 00:47:36 +08:00
|
|
|
vector<16 x f32>) we also support multidimensional registers on targets that
|
|
|
|
support them (like TPUs).
|
|
|
|
|
2019-02-08 00:36:50 +08:00
|
|
|
Vector shapes must be positive decimal integers.
|
|
|
|
|
|
|
|
Note: hexadecimal integer literals are not allowed in vector type declarations,
|
|
|
|
`vector<0x42xi32>` is invalid because it is interpreted as a 2D vector with
|
|
|
|
shape `(0, 42)` and zero shapes are not allowed.
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
#### Tensor Type
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
Syntax:
|
|
|
|
|
|
|
|
``` {.ebnf}
|
2018-11-28 06:49:21 +08:00
|
|
|
tensor-type ::= `tensor` `<` dimension-list tensor-memref-element-type `>`
|
2018-11-08 22:48:09 +08:00
|
|
|
tensor-memref-element-type ::= vector-element-type | vector-type
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
// memref requires a known rank, but tensor does not.
|
|
|
|
dimension-list ::= dimension-list-ranked | `*` `x`
|
|
|
|
dimension-list-ranked ::= (dimension `x`)*
|
2019-02-08 00:36:50 +08:00
|
|
|
dimension ::= `?` | decimal-literal
|
2018-10-25 00:47:36 +08:00
|
|
|
```
|
|
|
|
|
|
|
|
SSA values of tensor type represents aggregate N-dimensional data values, and
|
|
|
|
have a known element type. It may have an unknown rank (indicated by `*`) or may
|
|
|
|
have a fixed rank with a list of dimensions. Each dimension may be a static
|
2019-02-08 00:36:50 +08:00
|
|
|
non-negative decimal constant or be dynamically determined (indicated by `?`).
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
The runtime representation of the MLIR tensor type is intentionally abstracted -
|
|
|
|
you cannot control layout or get a pointer to the data. For low level buffer
|
|
|
|
access, MLIR has a [`memref` type](#memref-type). This abstracted runtime
|
|
|
|
representation holds both the tensor data values as well as information about
|
|
|
|
the (potentially dynamic) shape of the tensor. The
|
2019-04-05 23:19:42 +08:00
|
|
|
[`dim` operation](#dim-operation) returns the size of a dimension from a value
|
2018-10-25 00:47:36 +08:00
|
|
|
of tensor type.
|
|
|
|
|
2019-02-08 00:36:50 +08:00
|
|
|
Note: hexadecimal integer literals are not allowed in tensor type declarations
|
|
|
|
to avoid confusion between `0xf32` and `0 x f32`. Zero sizes are allowed in
|
|
|
|
tensors and treated as other sizes, e.g., `tensor<0 x 1 x i32>` and `tensor<1 x
|
2019-04-25 04:25:49 +08:00
|
|
|
0 x i32>` are different types. Since zero sizes are not allowed in some other
|
|
|
|
types, such tensors should be optimized away before lowering tensors to vectors.
|
2019-02-08 00:36:50 +08:00
|
|
|
|
2018-10-25 00:47:36 +08:00
|
|
|
Examples:
|
|
|
|
|
2018-11-14 23:52:12 +08:00
|
|
|
```mlir {.mlir}
|
2018-10-25 00:47:36 +08:00
|
|
|
// Tensor with unknown rank.
|
|
|
|
tensor<* x f32>
|
|
|
|
|
|
|
|
// Known rank but unknown dimensions.
|
|
|
|
tensor<? x ? x ? x ? x f32>
|
|
|
|
|
|
|
|
// Partially known dimensions.
|
|
|
|
tensor<? x ? x 13 x ? x f32>
|
|
|
|
|
|
|
|
// Full static shape.
|
|
|
|
tensor<17 x 4 x 13 x 4 x f32>
|
2019-01-05 03:32:10 +08:00
|
|
|
|
|
|
|
// Tensor with rank zero. Represents a scalar.
|
|
|
|
tensor<f32>
|
2019-02-08 00:36:50 +08:00
|
|
|
|
2019-03-28 07:16:15 +08:00
|
|
|
// Zero-element dimensions are allowed.
|
2019-02-08 00:36:50 +08:00
|
|
|
tensor<0 x 42 x f32>
|
|
|
|
|
|
|
|
// Zero-element tensor of f32 type (hexadecimal literals not allowed here).
|
|
|
|
tensor<0xf32>
|
2018-10-25 00:47:36 +08:00
|
|
|
```
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
#### Memref Type
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
Syntax:
|
|
|
|
|
|
|
|
``` {.ebnf}
|
|
|
|
memref-type ::= `memref` `<` dimension-list-ranked tensor-memref-element-type
|
|
|
|
(`,` semi-affine-map-composition)? (`,` memory-space)? `>`
|
|
|
|
|
|
|
|
semi-affine-map-composition ::= (semi-affine-map `,` )* semi-affine-map
|
|
|
|
memory-space ::= integer-literal /* | TODO: address-space-id */
|
|
|
|
```
|
|
|
|
|
|
|
|
A `memref` type is a reference to a region of memory (similar to a buffer
|
|
|
|
pointer, but more powerful). The buffer pointed to by a memref can be allocated,
|
|
|
|
aliased and deallocated. A memref can be used to read and write data from/to the
|
|
|
|
memory region which it references. Memref types use the same shape specifier as
|
2019-04-25 04:25:49 +08:00
|
|
|
tensor types, but do not allow unknown rank. Note that `memref<f32>`, `memref<0
|
|
|
|
x f32>`, `memref<1 x 0 x f32>`, and `memref<0 x 1 x f32>` are all different
|
|
|
|
types.
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
The memory space of a memref is specified by a target-specific integer index. If
|
|
|
|
no memory space is specified, then the default memory space (0) is used. The
|
|
|
|
default space is target specific but always at index 0.
|
|
|
|
|
|
|
|
TODO: MLIR will eventually have target-dialects which allow symbolic use of
|
2019-04-06 09:34:49 +08:00
|
|
|
memory hierarchy names (e.g. L3, L2, L1, ...) but we have not spec'd the details
|
2018-10-25 00:47:36 +08:00
|
|
|
of that mechanism yet. Until then, this document pretends that it is valid to
|
|
|
|
refer to these memories by `bare_id`.
|
|
|
|
|
|
|
|
The notionally dynamic value of a memref value includes the address of the
|
|
|
|
buffer allocated, as well as the symbols referred to by the shape, layout map,
|
|
|
|
and index maps.
|
|
|
|
|
|
|
|
Examples of memref static type
|
|
|
|
|
2018-11-14 23:52:12 +08:00
|
|
|
```mlir {.mlir}
|
2018-10-25 00:47:36 +08:00
|
|
|
// Identity index/layout map
|
|
|
|
#imapA = (d0, d1) -> (d0, d1) size (16, 32)
|
|
|
|
|
|
|
|
// Column major layout.
|
|
|
|
#imapB = (d0, d1, d2) [s0] -> (d2, d1, d0) size (s0, 4, 16)
|
|
|
|
|
|
|
|
// The dimension list "16x32" defines the following 2D index space:
|
|
|
|
//
|
|
|
|
// { (i, j) : 0 <= i < 16, 0 <= j < 32 }
|
|
|
|
//
|
2019-04-06 09:34:49 +08:00
|
|
|
memref<16x32xf32, #imapA, memspace0>
|
2018-10-25 00:47:36 +08:00
|
|
|
// The dimension list "16x4x?" defines the following 3D index space:
|
|
|
|
//
|
|
|
|
// { (i, j, k) : 0 <= i < 16, 0 <= j < 4, 0 <= k < N }
|
|
|
|
//
|
|
|
|
// where N is a symbol which represents the runtime value of the size of
|
|
|
|
// the third dimension.
|
2019-04-06 09:34:49 +08:00
|
|
|
memref<16x4x?xf32, #imapB, memspace0>
|
2018-10-25 00:47:36 +08:00
|
|
|
```
|
|
|
|
|
|
|
|
Symbol capture example:
|
|
|
|
|
2018-11-14 23:52:12 +08:00
|
|
|
```mlir {.mlir}
|
2018-10-25 00:47:36 +08:00
|
|
|
// Affine map with symbol 's0' used as offset for first dimension.
|
|
|
|
#imapA = (d0, d1) [s0] -> (d0 + s0, d1)
|
|
|
|
// Allocate memref and bind the following symbols:
|
|
|
|
// '%n' is bound to the dynamic second dimension of the memref type.
|
|
|
|
// '%o' is bound to the symbol 's0' in the affine map of the memref type.
|
|
|
|
%n = ...
|
|
|
|
%o = ...
|
|
|
|
%A = <strong>alloc</strong> (%n)[%o] : <16x?xf32, #imapA>
|
|
|
|
```
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
##### Index Space
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
A memref dimension list defines an index space within which the memref can be
|
|
|
|
indexed to access data.
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
##### Index
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
Data is accessed through a memref type using a multidimensional index into the
|
|
|
|
multidimensional index space defined by the memref's dimension list.
|
|
|
|
|
|
|
|
Examples
|
|
|
|
|
2018-11-14 23:52:12 +08:00
|
|
|
```mlir {.mlir}
|
2018-10-25 00:47:36 +08:00
|
|
|
// Allocates a memref with 2D index space:
|
|
|
|
// { (i, j) : 0 <= i < 16, 0 <= j < 32 }
|
2019-04-06 09:34:49 +08:00
|
|
|
%A = alloc() : memref<16x32xf32, #imapA, memspace0>
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
// Loads data from memref '%A' using a 2D index: (%i, %j)
|
2019-04-06 09:34:49 +08:00
|
|
|
%v = load %A[%i, %j] : memref<16x32xf32, #imapA, memspace0>
|
2018-10-25 00:47:36 +08:00
|
|
|
```
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
##### Index Map
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
An index map is a one-to-one [semi-affine map](#semi-affine-maps) that
|
|
|
|
transforms a multidimensional index from one index space to another. For
|
|
|
|
example, the following figure shows an index map which maps a 2-dimensional
|
|
|
|
index from a 2x2 index space to a 3x3 index space, using symbols `S0` and `S1`
|
|
|
|
as offsets.
|
|
|
|
|
|
|
|
![Index Map Example](includes/img/index-map.svg)
|
|
|
|
|
|
|
|
The number of domain dimensions and range dimensions of an index map can be
|
|
|
|
different, but must match the number of dimensions of the input and output index
|
|
|
|
spaces on which the map operates. The index space is always non-negative and
|
|
|
|
integral. In addition, an index map must specify the size of each of its range
|
|
|
|
dimensions onto which it maps. Index map symbols must be listed in order with
|
|
|
|
symbols for dynamic dimension sizes first, followed by other required symbols.
|
|
|
|
|
|
|
|
Index map examples:
|
|
|
|
|
2018-11-14 23:52:12 +08:00
|
|
|
```mlir {.mlir}
|
2018-10-25 00:47:36 +08:00
|
|
|
// Index map from [MS, NS] slice index space to larger [M, N]
|
|
|
|
// matrix index space at slice offset symbols OI, OJ:
|
|
|
|
// Maps from [MS, NS] -> [M, N]
|
|
|
|
#imap_slice = (i, j) [M, N, OI, OJ] -> (i + OI , j + OJ) size (M, N)
|
|
|
|
|
|
|
|
// Index map from 4-dimensional tiled index space to
|
|
|
|
// 2-dimensional index space.
|
|
|
|
// Maps from [M/128, N/128, 128, 128] -> [M, N]
|
|
|
|
#imap_tiled = (d0, d1, d2, d3) [M, N] -> (128 * d0 + d2, 128 * d1 + d3)
|
|
|
|
size (M, N)
|
|
|
|
```
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
##### Layout Map
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
A layout map is a [semi-affine map](#semi-affine-maps) which encodes logical to
|
|
|
|
physical index space mapping, by mapping input dimensions to their ordering from
|
|
|
|
most-major (slowest varying) to most-minor (fastest varying). Therefore, an
|
|
|
|
identity layout map corresponds to a row-major layout.
|
|
|
|
|
|
|
|
Layout map examples:
|
|
|
|
|
2018-11-14 23:52:12 +08:00
|
|
|
```mlir {.mlir}
|
2018-10-25 00:47:36 +08:00
|
|
|
// MxN matrix stored in row major layout in memory:
|
|
|
|
#layout_map_row_major = (i, j) [M, N] -> (i, j) size (M, N)
|
|
|
|
|
|
|
|
// MxN matrix stored in column major layout in memory:
|
|
|
|
#layout_map_col_major = (i, j), [M, N] -> (j, i) size (M, N)
|
|
|
|
```
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
##### Affine Map Composition
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
A memref specifies a semi-affine map composition as part of its type. A
|
|
|
|
semi-affine map composition is a composition of semi-affine maps beginning with
|
|
|
|
zero or more index maps, and ending with a layout map. The composition must be
|
|
|
|
conformant: the number of dimensions of the range of one map, must match the
|
|
|
|
number of dimensions of the domain of the next map in the composition.
|
|
|
|
|
|
|
|
The semi-affine map composition specified in the memref type, maps from accesses
|
2019-03-30 04:15:06 +08:00
|
|
|
used to index the memref in load/store operations to other index spaces (i.e.
|
2018-10-25 00:47:36 +08:00
|
|
|
logical to physical index mapping). Each of the
|
|
|
|
[semi-affine maps](#semi-affine-maps) and thus its composition is required to be
|
|
|
|
one-to-one.
|
|
|
|
|
|
|
|
The semi-affine map composition can be used in dependence analysis, memory
|
|
|
|
access pattern analysis, and for performance optimizations like vectorization,
|
|
|
|
copy elision and in-place updates. If an affine map composition is not specified
|
|
|
|
for the memref, the identity affine map is assumed.
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
#### Complex Type
|
2019-03-30 13:23:34 +08:00
|
|
|
|
|
|
|
Syntax:
|
|
|
|
|
|
|
|
``` {.ebnf}
|
|
|
|
complex-type ::= `complex` `<` type `>`
|
|
|
|
```
|
|
|
|
|
|
|
|
The value of `complex` type represents a complex number with a parameterized
|
|
|
|
element type, which is composed of a real and imaginary value of that element
|
|
|
|
type. The element must be a floating point or integer scalar type.
|
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
|
|
|
```mlir {.mlir}
|
|
|
|
complex<f32>
|
|
|
|
complex<i32>
|
|
|
|
```
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
#### Tuple Type
|
2019-03-20 01:59:02 +08:00
|
|
|
|
|
|
|
Syntax:
|
|
|
|
|
|
|
|
``` {.ebnf}
|
|
|
|
tuple-type ::= `tuple` `<` (type ( `,` type)*)? `>`
|
|
|
|
```
|
|
|
|
|
|
|
|
The value of `tuple` type represents a fixed-size collection of elements, where
|
|
|
|
each element may be of a different type.
|
|
|
|
|
|
|
|
**Rationale:** Though this type is first class in the type system, MLIR provides
|
|
|
|
no standard operations for operating on `tuple` types
|
2019-04-05 23:19:42 +08:00
|
|
|
([rationale](Rationale.md#tuple-types)).
|
2019-03-20 01:59:02 +08:00
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
|
|
|
```mlir {.mlir}
|
|
|
|
// Empty tuple.
|
|
|
|
tuple<>
|
|
|
|
|
|
|
|
// Single element
|
|
|
|
tuple<f32>
|
|
|
|
|
|
|
|
// Many elements.
|
|
|
|
tuple<i32, f32, tensor<i1>, i5>
|
|
|
|
```
|
|
|
|
|
2019-04-28 09:35:04 +08:00
|
|
|
#### None Type
|
|
|
|
|
|
|
|
Syntax:
|
|
|
|
|
|
|
|
``` {.ebnf}
|
|
|
|
none-type ::= `none`
|
|
|
|
```
|
|
|
|
|
|
|
|
The `none` type is a unit type, i.e. a type with exactly one possible value,
|
|
|
|
where its value does not have a defined dynamic representation.
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
## Attributes
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
Syntax:
|
|
|
|
|
|
|
|
``` {.ebnf}
|
|
|
|
attribute-dict ::= `{` `}`
|
|
|
|
| `{` attribute-entry (`,` attribute-entry)* `}`
|
2019-03-03 14:34:18 +08:00
|
|
|
attribute-entry ::= dialect-attribute-entry | dependent-attribute-entry
|
|
|
|
dialect-attribute-entry ::= dialect-namespace `.` bare-id `:` attribute-value
|
|
|
|
dependent-attribute-entry ::= dependent-attribute-name `:` attribute-value
|
|
|
|
dependent-attribute-name ::= (letter|[_]) (letter|digit|[_$])*
|
2018-10-25 00:47:36 +08:00
|
|
|
```
|
|
|
|
|
|
|
|
Attributes are the mechanism for specifying constant data in MLIR in places
|
|
|
|
where a variable is never allowed - e.g. the index of a
|
2019-04-05 23:19:42 +08:00
|
|
|
[`dim` operation](#dim-operation), or the stride of a convolution. They consist
|
|
|
|
of a name and a [concrete attribute value](#attribute-values). It is possible to
|
|
|
|
attach attributes to operations, functions, and function arguments. The set of
|
|
|
|
expected attributes, their structure, and their interpretation are all
|
|
|
|
contextually dependent on what they are attached to.
|
2018-10-25 00:47:36 +08:00
|
|
|
|
2019-03-03 14:34:18 +08:00
|
|
|
There are two main classes of attributes; dependent and dialect. Dependent
|
|
|
|
attributes derive their structure and meaning from what they are attached to,
|
|
|
|
e.g the meaning of the `index` attribute on a `dim` operation is defined by the
|
|
|
|
`dim` operation. Dialect attributes, on the other hand, derive their context and
|
|
|
|
meaning from a specific dialect. An example of a dialect attribute may be a
|
|
|
|
`swift.self` function argument attribute that indicates an argument is the
|
|
|
|
self/context parameter. The context of this attribute is defined by the `swift`
|
|
|
|
dialect and not the function argument.
|
|
|
|
|
|
|
|
### Function and Argument Attributes
|
|
|
|
|
|
|
|
Functions and function arguments in MLIR may have optional attributes attached
|
|
|
|
to them. The sole constraint for these attributes is that they must be dialect
|
|
|
|
specific attributes. This is because functions, and function arguments, are a
|
|
|
|
generic entities and thus cannot apply any meaningful context necessary for
|
|
|
|
dependent attributes. This has the added benefit of avoiding collisions between
|
|
|
|
common attribute names, such as `noalias`.
|
|
|
|
|
|
|
|
### Operation Attributes
|
|
|
|
|
|
|
|
Operations, unlike functions and function arguments, may include both dialect
|
|
|
|
specific and dependent attributes. This is because an operation represents a
|
|
|
|
distinct semantic context, and can thus provide a single source of meaning to
|
|
|
|
dependent attributes.
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
### Attribute Values
|
2019-03-03 14:34:18 +08:00
|
|
|
|
|
|
|
Attributes values are represented by the following forms:
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
``` {.ebnf}
|
2019-02-13 04:55:40 +08:00
|
|
|
attribute-value ::= affine-map-attribute
|
|
|
|
| array-attribute
|
|
|
|
| bool-attribute
|
|
|
|
| elements-attribute
|
|
|
|
| integer-attribute
|
|
|
|
| integer-set-attribute
|
|
|
|
| float-attribute
|
|
|
|
| function-attribute
|
|
|
|
| string-attribute
|
|
|
|
| type-attribute
|
2019-04-26 00:56:09 +08:00
|
|
|
| unit-attribute
|
2018-10-25 00:47:36 +08:00
|
|
|
```
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
#### AffineMap Attribute
|
2019-02-13 04:55:40 +08:00
|
|
|
|
|
|
|
Syntax:
|
|
|
|
|
|
|
|
``` {.ebnf}
|
|
|
|
affine-map-attribute ::= affine-map
|
|
|
|
```
|
|
|
|
|
|
|
|
An affine-map attribute is an attribute that represents a affine-map object.
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
#### Array Attribute
|
2019-02-13 04:55:40 +08:00
|
|
|
|
|
|
|
Syntax:
|
|
|
|
|
|
|
|
``` {.ebnf}
|
|
|
|
array-attribute ::= `[` (attribute-value (`,` attribute-value)*)? `]`
|
|
|
|
```
|
|
|
|
|
|
|
|
An array attribute is an attribute that represents a collection of attribute
|
|
|
|
values.
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
#### Boolean Attribute
|
2019-02-13 04:55:40 +08:00
|
|
|
|
|
|
|
Syntax:
|
|
|
|
|
|
|
|
``` {.ebnf}
|
|
|
|
bool-attribute ::= bool-literal
|
|
|
|
```
|
|
|
|
|
|
|
|
A boolean attribute is a literal attribute that represents a one-bit boolean
|
|
|
|
value, true or false.
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
#### Elements Attributes
|
2019-02-13 04:55:40 +08:00
|
|
|
|
|
|
|
Syntax:
|
|
|
|
|
|
|
|
``` {.ebnf}
|
|
|
|
elements-attribute ::= dense-elements-attribute
|
|
|
|
| opaque-elements-attribute
|
|
|
|
| sparse-elements-attribute
|
|
|
|
| splat-elements-attribute
|
|
|
|
```
|
|
|
|
|
|
|
|
An elements attribute is a literal attribute that represents a constant
|
|
|
|
[vector](#vector-type) or [tensor](#tensor-type) value.
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
##### Dense Elements Attribute
|
2019-02-13 04:55:40 +08:00
|
|
|
|
|
|
|
Syntax:
|
|
|
|
|
|
|
|
``` {.ebnf}
|
|
|
|
dense-elements-attribute ::= `dense` `<` ( tensor-type | vector-type )
|
|
|
|
`,` attribute-value `>`
|
|
|
|
```
|
|
|
|
|
|
|
|
A dense elements attribute is an elements attribute where the storage for the
|
|
|
|
constant vector or tensor value has been packed to the element bitwidth. The
|
|
|
|
element type of the vector or tensor constant must be of integer, index, or
|
|
|
|
floating point type.
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
##### Opaque Elements Attribute
|
2019-02-13 04:55:40 +08:00
|
|
|
|
|
|
|
Syntax:
|
|
|
|
|
|
|
|
``` {.ebnf}
|
|
|
|
opaque-elements-attribute ::= `opaque` `<` dialect-namespace `,`
|
|
|
|
( tensor-type | vector-type ) `,`
|
|
|
|
hex-string-literal `>`
|
|
|
|
```
|
|
|
|
|
|
|
|
An opaque elements attribute is an elements attribute where the content of the
|
|
|
|
value is opaque. The representation of the constant stored by this elements
|
|
|
|
attribute is only understood, and thus decodable, by the dialect that created
|
|
|
|
it.
|
|
|
|
|
|
|
|
Note: The parsed string literal must be in hexadecimal form.
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
##### Sparse Elements Attribute
|
2019-02-13 04:55:40 +08:00
|
|
|
|
|
|
|
Syntax:
|
|
|
|
|
|
|
|
``` {.ebnf}
|
|
|
|
sparse-elements-attribute ::= `sparse` `<` ( tensor-type | vector-type ) `,`
|
|
|
|
attribute-value `,` attribute-value `>`
|
|
|
|
```
|
|
|
|
|
|
|
|
A sparse elements attribute is an elements attribute that represents a sparse
|
|
|
|
vector or tensor object. This is where very few of the elements are non-zero.
|
|
|
|
|
|
|
|
The attribute uses COO (coordinate list) encoding to represent the sparse
|
|
|
|
elements of the elements attribute. The indices are stored via a 2-D tensor of
|
|
|
|
64-bit integer elements with shape [N, ndims], which specifies the indices of
|
|
|
|
the elements in the sparse tensor that contains non-zero values. The element
|
|
|
|
values are stored via a 1-D tensor with shape [N], that supplies the
|
|
|
|
corresponding values for the indices.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
```mlir {.mlir}
|
|
|
|
sparse<tensor<3x4xi32>, [[0, 0], [1, 2]], [1, 5]>
|
|
|
|
|
|
|
|
// This represents the following tensor:
|
|
|
|
/// [[1, 0, 0, 0],
|
|
|
|
/// [0, 0, 5, 0],
|
|
|
|
/// [0, 0, 0, 0]]
|
|
|
|
```
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
##### Splat Elements Attribute
|
2019-02-13 04:55:40 +08:00
|
|
|
|
|
|
|
Syntax:
|
|
|
|
|
|
|
|
``` {.ebnf}
|
|
|
|
splat-elements-attribute ::= `splat` `<` ( tensor-type | vector-type ) `,`
|
|
|
|
attribute-value `>`
|
|
|
|
```
|
|
|
|
|
|
|
|
A splat elements attribute is an elements attribute that represents a tensor or
|
|
|
|
vector constant where all elements have the same value.
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
#### Integer Attribute
|
2019-02-13 04:55:40 +08:00
|
|
|
|
|
|
|
Syntax:
|
|
|
|
|
|
|
|
``` {.ebnf}
|
|
|
|
integer-attribute ::= integer-literal ( `:` (index-type | integer-type) )?
|
|
|
|
```
|
|
|
|
|
|
|
|
An integer attribute is a literal attribute that represents an integral value of
|
|
|
|
the specified integer or index type. The default type for this attribute, if one
|
|
|
|
is not specified, is a 64-bit integer.
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
#### Integer Set Attribute
|
2019-02-13 04:55:40 +08:00
|
|
|
|
|
|
|
Syntax:
|
|
|
|
|
|
|
|
``` {.ebnf}
|
|
|
|
integer-set-attribute ::= affine-map
|
|
|
|
```
|
|
|
|
|
|
|
|
An integer-set attribute is an attribute that represents a integer-set object.
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
#### Float Attribute
|
2019-02-13 04:55:40 +08:00
|
|
|
|
|
|
|
Syntax:
|
|
|
|
|
|
|
|
``` {.ebnf}
|
|
|
|
float-attribute ::= float-literal (`:` float-type)?
|
|
|
|
```
|
|
|
|
|
|
|
|
A float attribute is a literal attribute that represents a floating point value
|
|
|
|
of the specified [float type](#floating-point-types).
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
#### Function Attribute
|
2019-02-13 04:55:40 +08:00
|
|
|
|
|
|
|
Syntax:
|
|
|
|
|
|
|
|
``` {.ebnf}
|
|
|
|
function-attribute ::= function-id `:` function-type
|
|
|
|
```
|
|
|
|
|
|
|
|
A function attribute is a literal attribute that represents a reference to the
|
|
|
|
given function object.
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
#### String Attribute
|
2019-02-13 04:55:40 +08:00
|
|
|
|
|
|
|
Syntax:
|
|
|
|
|
|
|
|
``` {.ebnf}
|
|
|
|
string-attribute ::= string-literal
|
|
|
|
```
|
|
|
|
|
|
|
|
A string attribute is an attribute that represents a string literal value.
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
#### Type Attribute
|
2019-02-13 04:55:40 +08:00
|
|
|
|
|
|
|
Syntax:
|
|
|
|
|
|
|
|
``` {.ebnf}
|
|
|
|
type-attribute ::= type
|
|
|
|
```
|
|
|
|
|
|
|
|
A type attribute is an attribute that represents a [type object](#type-system).
|
|
|
|
|
2019-04-26 00:56:09 +08:00
|
|
|
#### Unit Attribute
|
|
|
|
|
|
|
|
``` {.ebnf}
|
|
|
|
unit-attribute ::= `unit`
|
|
|
|
```
|
|
|
|
|
|
|
|
A unit attribute is an attribute that represents a value of `unit` type. The
|
|
|
|
`unit` type allows only one value forming a singleton set. This attribute value
|
|
|
|
is used to represent attributes that only have meaning from their existence.
|
|
|
|
|
|
|
|
One example of such an attribute could be the `swift.self` attribute. This
|
|
|
|
attribute indicates that a function parameter is the self/context parameter. It
|
|
|
|
could be represented as a [boolean attribute](#boolean-attribute)(true or
|
|
|
|
false), but a value of false doesn't really bring any value. The parameter
|
|
|
|
either is the self/context or it isn't.
|
|
|
|
|
|
|
|
```mlir {.mlir}
|
|
|
|
// A unit attribute defined with the `unit` value specifier.
|
|
|
|
func @verbose_form(i1 {unitAttr : unit})
|
|
|
|
|
|
|
|
// A unit attribute can also be defined without the value specifier.
|
|
|
|
func @simple_form(i1 {unitAttr})
|
|
|
|
```
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
## Module
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
``` {.ebnf}
|
|
|
|
module ::= module-header-def* function*
|
|
|
|
```
|
|
|
|
|
|
|
|
An MLIR module may optionally have a list of header definitions (e.g. affine
|
|
|
|
mappings) at the top of the file, but is principally made up of a list of
|
|
|
|
functions.
|
|
|
|
|
|
|
|
TODO: We should allow specifying a "dialect" in the module header. This will
|
|
|
|
prepopulate a symbol table with known named types and mappings (e.g. for TPU)
|
|
|
|
and will define the set of operations that are allowed (allowing the verifier to
|
|
|
|
detect common errors).
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
## Functions
|
2018-10-25 00:47:36 +08:00
|
|
|
|
2019-01-03 04:32:30 +08:00
|
|
|
MLIR functions have a signature (including argument and result types) and
|
|
|
|
associated attributes according to the following grammar:
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
``` {.ebnf}
|
2019-01-03 04:32:30 +08:00
|
|
|
function ::= `func` function-signature function-attributes? function-body?
|
2018-10-25 00:47:36 +08:00
|
|
|
|
2019-02-06 03:47:02 +08:00
|
|
|
function-signature ::= function-id `(` argument-list `)` (`->` function-result-type)?
|
2019-01-03 04:32:30 +08:00
|
|
|
argument-list ::= named-argument (`,` named-argument)* | /*empty*/
|
2019-03-01 01:30:52 +08:00
|
|
|
argument-list ::= type attribute-dict? (`,` type attribute-dict?)* | /*empty*/
|
|
|
|
named-argument ::= ssa-id `:` type attribute-dict?
|
2018-10-25 00:47:36 +08:00
|
|
|
|
2019-01-03 04:32:30 +08:00
|
|
|
function-attributes ::= `attributes` attribute-dict
|
|
|
|
function-body ::= `{` block+ `}`
|
2018-10-25 00:47:36 +08:00
|
|
|
```
|
|
|
|
|
2019-01-03 04:32:30 +08:00
|
|
|
An external function declaration (used when referring to a function declared in
|
|
|
|
some other module) has no body. A function definition contains a control
|
|
|
|
flow graph made up of one or more blocks. While the MLIR textual form provides a
|
|
|
|
nice inline syntax for function arguments, they are internally represented as
|
|
|
|
"block arguments" to the first block in the function.
|
2018-10-25 00:47:36 +08:00
|
|
|
|
2019-01-03 04:32:30 +08:00
|
|
|
Examples:
|
2018-10-25 00:47:36 +08:00
|
|
|
|
2018-11-14 23:52:12 +08:00
|
|
|
```mlir {.mlir}
|
2019-01-03 04:32:30 +08:00
|
|
|
// External function definitions.
|
|
|
|
func @abort()
|
|
|
|
func @scribble(i32, i64, memref<? x 128 x f32, #layout_map0>) -> f64
|
|
|
|
|
|
|
|
// A function that returns its argument twice:
|
|
|
|
func @count(%x: i64) -> (i64, i64)
|
2018-10-25 00:47:36 +08:00
|
|
|
attributes {fruit: "banana"} {
|
|
|
|
return %x, %x: i64, i64
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
#### Blocks
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
Syntax:
|
|
|
|
|
|
|
|
``` {.ebnf}
|
2019-03-30 04:15:06 +08:00
|
|
|
block ::= bb-label operation+
|
2018-12-29 05:07:39 +08:00
|
|
|
bb-label ::= bb-id bb-arg-list? `:`
|
2018-12-30 03:32:37 +08:00
|
|
|
bb-id ::= caret-id
|
2018-10-25 00:47:36 +08:00
|
|
|
ssa-id-and-type ::= ssa-id `:` type
|
|
|
|
|
|
|
|
// Non-empty list of names and types.
|
|
|
|
ssa-id-and-type-list ::= ssa-id-and-type (`,` ssa-id-and-type)*
|
|
|
|
|
|
|
|
bb-arg-list ::= `(` ssa-id-and-type-list? `)`
|
|
|
|
```
|
|
|
|
|
|
|
|
A [basic block](https://en.wikipedia.org/wiki/Basic_block) is a sequential list
|
2019-03-30 04:15:06 +08:00
|
|
|
of operations without control flow (calls are not considered control flow for
|
|
|
|
this purpose) that are executed from top to bottom. The last operation in a
|
2019-01-03 04:32:30 +08:00
|
|
|
block is a [terminator operation](#terminator-operations), which ends the block.
|
2018-10-25 00:47:36 +08:00
|
|
|
|
2019-01-03 04:32:30 +08:00
|
|
|
Blocks in MLIR take a list of block arguments, which represent SSA PHI nodes in
|
|
|
|
a functional notation. The arguments are defined by the block, and values are
|
2018-12-29 05:07:39 +08:00
|
|
|
provided for these block arguments by branches that go to the block.
|
2018-10-25 00:47:36 +08:00
|
|
|
|
2018-12-29 05:07:39 +08:00
|
|
|
Here is a simple example function showing branches, returns, and block
|
2018-10-25 00:47:36 +08:00
|
|
|
arguments:
|
|
|
|
|
2018-11-14 23:52:12 +08:00
|
|
|
```mlir {.mlir}
|
2019-01-03 04:32:30 +08:00
|
|
|
func @simple(i64, i1) -> i64 {
|
2018-12-30 03:32:37 +08:00
|
|
|
^bb0(%a: i64, %cond: i1): // Code dominated by ^bb0 may refer to %a
|
|
|
|
br_cond %cond, ^bb1, ^bb2
|
2018-10-25 00:47:36 +08:00
|
|
|
|
2018-12-30 03:32:37 +08:00
|
|
|
^bb1:
|
|
|
|
br ^bb3(%a: i64) // Branch passes %a as the argument
|
2018-10-25 00:47:36 +08:00
|
|
|
|
2018-12-30 03:32:37 +08:00
|
|
|
^bb2:
|
2019-01-03 04:32:30 +08:00
|
|
|
%b = addi %a, %a : i64
|
2018-12-30 03:32:37 +08:00
|
|
|
br ^bb3(%b: i64) // Branch passes %b as the argument
|
2018-10-25 00:47:36 +08:00
|
|
|
|
2018-12-30 03:32:37 +08:00
|
|
|
// ^bb3 receives an argument, named %c, from predecessors
|
2018-11-13 06:58:53 +08:00
|
|
|
// and passes it on to bb4 twice.
|
2018-12-30 03:32:37 +08:00
|
|
|
^bb3(%c: i64):
|
|
|
|
br ^bb4(%c, %c : i64, i64)
|
2018-11-13 06:58:53 +08:00
|
|
|
|
2018-12-30 03:32:37 +08:00
|
|
|
^bb4(%d : i64, %e : i64):
|
2018-11-13 06:58:53 +08:00
|
|
|
%0 = addi %d, %e : i64
|
|
|
|
return %0 : i64
|
2018-10-25 00:47:36 +08:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2018-12-29 05:07:39 +08:00
|
|
|
**Context:** The "block argument" representation eliminates a number of special
|
2019-03-30 04:15:06 +08:00
|
|
|
cases from the IR compared to traditional "PHI nodes are operations" SSA IRs
|
2018-12-29 05:07:39 +08:00
|
|
|
(like LLVM). For example, the
|
2018-10-25 00:47:36 +08:00
|
|
|
[parallel copy semantics](http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.524.5461&rep=rep1&type=pdf)
|
|
|
|
of SSA is immediately apparent, and function arguments are no longer a special
|
|
|
|
case: they become arguments to the entry block
|
2018-12-29 05:07:39 +08:00
|
|
|
[[more rationale](Rationale.md#block-arguments-vs-phi-nodes)].
|
2018-10-25 00:47:36 +08:00
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
### Operations
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
Syntax:
|
|
|
|
|
|
|
|
``` {.ebnf}
|
2019-03-30 04:15:06 +08:00
|
|
|
operation ::= op-result? string-literal `(` ssa-use-list? `)`
|
2019-01-10 04:28:30 +08:00
|
|
|
(`[` successor-list `]`)? attribute-dict? `:` function-type
|
2019-03-30 04:15:06 +08:00
|
|
|
op-result ::= ssa-id ((`:` integer-literal) | (`,` ssa-id)*) `=`
|
2019-01-10 04:28:30 +08:00
|
|
|
successor-list ::= successor (`,` successor)*
|
2018-10-25 00:47:36 +08:00
|
|
|
```
|
|
|
|
|
2019-02-06 08:29:25 +08:00
|
|
|
MLIR represents computations within functions with a uniform concept called
|
2019-01-03 04:32:30 +08:00
|
|
|
_operations_. Operations in MLIR are fully extensible (there is no fixed list of
|
|
|
|
operations), and have application-specific semantics. For example, MLIR supports
|
|
|
|
[target-independent operations](#memory-operations),
|
2019-02-06 08:29:25 +08:00
|
|
|
[affine operations](Dialects/Affine.md), and
|
2019-03-30 04:15:06 +08:00
|
|
|
[target-specific machine operations](#target-specific-operations).
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
The internal representation of an operation is simple: an operation is
|
|
|
|
identified by a unique string (e.g. `dim`, `tf.Conv2d`, `x86.repmovsb`,
|
|
|
|
`ppc.eieio`, etc), can return zero or more results, take zero or more SSA
|
|
|
|
operands, and may have zero or more attributes. When parsed or printed in the
|
2019-01-24 03:26:56 +08:00
|
|
|
_generic assembly form_, these are all printed literally, and a function type is
|
|
|
|
used to indicate the types of the results and operands.
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
Example:
|
|
|
|
|
2018-11-14 23:52:12 +08:00
|
|
|
```mlir {.mlir}
|
2019-03-30 04:15:06 +08:00
|
|
|
// An operation that produces two results.
|
|
|
|
// The results of %result can be accessed via the <name> `#` <opNo> syntax.
|
|
|
|
%result:2 = "foo_div"() : () -> (f32, i32)
|
2019-03-29 05:58:52 +08:00
|
|
|
|
|
|
|
// Pretty form that defines a unique name for each result.
|
2019-03-30 04:15:06 +08:00
|
|
|
%foo, %bar = "foo_div"() : () -> (f32, i32)
|
2019-03-29 05:58:52 +08:00
|
|
|
|
2018-10-25 00:47:36 +08:00
|
|
|
// Invoke a TensorFlow function called tf.scramble with two inputs
|
|
|
|
// and an attribute "fruit".
|
2019-03-30 04:15:06 +08:00
|
|
|
%2 = "tf.scramble"(%result#0, %bar){fruit: "banana"} : (f32, i32) -> f32
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
```
|
|
|
|
|
2019-01-10 04:28:30 +08:00
|
|
|
[Terminator operations](#terminator-operations) may also have a list of
|
|
|
|
successors ([blocks](#blocks) and their arguments).
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
```mlir {.mlir}
|
|
|
|
// Branch to ^bb1 or ^bb2 depending on the condition %cond.
|
|
|
|
// Pass value %v to ^bb2, but not to ^bb1.
|
|
|
|
"br_cond"(%cond)[^bb1, ^bb2(%v : index)] : (i1) -> ()
|
|
|
|
```
|
|
|
|
|
2019-01-24 03:26:56 +08:00
|
|
|
In addition to the basic syntax above, dialects may register tables of known
|
|
|
|
operations. This allows those dialects to support _custom assembly form_ for
|
|
|
|
parsing and printing operations. In the operation sets listed below, we show
|
|
|
|
both forms.
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
**Context:** TensorFlow has an open "op" ecosystem, and we directly apply these
|
|
|
|
ideas to the design of MLIR, but generalize it much further. To make it easy to
|
|
|
|
reason about IR dumps and manipulate operations in C++, the MLIR compiler
|
|
|
|
infrastructure uses C++ templates to make working with them convenient and safe.
|
|
|
|
The details of this are not described in this document.
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
## Standard Operations
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
TODO: shape, which returns a 1D tensor, and can take an unknown rank tensor as
|
|
|
|
input.
|
|
|
|
|
|
|
|
TODO: rank, which returns an index.
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
#### Terminator operations
|
2019-01-03 04:32:30 +08:00
|
|
|
|
2019-01-10 04:28:30 +08:00
|
|
|
Terminator operations are required at the end of each block. They may contain a
|
|
|
|
list of successors, i.e. other blocks to which the control flow will proceed.
|
|
|
|
Currently, all terminator operations must be registered in some known
|
|
|
|
[dialect](#dialects), unlike regular operations.
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
##### 'br' terminator operation
|
2019-01-03 04:32:30 +08:00
|
|
|
|
|
|
|
Syntax:
|
|
|
|
|
|
|
|
``` {.ebnf}
|
2019-01-10 04:28:30 +08:00
|
|
|
operation ::= `br` successor
|
|
|
|
successor ::= bb-id branch-use-list?
|
2019-01-03 04:32:30 +08:00
|
|
|
branch-use-list ::= `(` ssa-use-list `:` type-list-no-parens `)`
|
|
|
|
```
|
|
|
|
|
2019-03-30 04:15:06 +08:00
|
|
|
The `br` terminator operation represents an unconditional jump to a target
|
2019-01-03 04:32:30 +08:00
|
|
|
block. The count and types of operands to the branch must align with the
|
|
|
|
arguments in the target block.
|
|
|
|
|
2019-03-30 04:15:06 +08:00
|
|
|
The MLIR branch operation is not allowed to target the entry block for a
|
2019-01-03 04:32:30 +08:00
|
|
|
function.
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
##### 'cond_br' terminator operation
|
2019-01-03 04:32:30 +08:00
|
|
|
|
|
|
|
Syntax:
|
|
|
|
|
|
|
|
``` {.ebnf}
|
|
|
|
operation ::=
|
2019-01-10 04:28:30 +08:00
|
|
|
`cond_br` ssa-use `,` successor `,` successor
|
2019-01-03 04:32:30 +08:00
|
|
|
```
|
|
|
|
|
2019-03-30 04:15:06 +08:00
|
|
|
The `cond_br` terminator operation represents a conditional branch on a boolean
|
|
|
|
(1-bit integer) value. If the bit is set, then the first destination is jumped
|
|
|
|
to; if it is false, the second destination is chosen. The count and types of
|
|
|
|
operands must align with the arguments in the corresponding target blocks.
|
2019-01-03 04:32:30 +08:00
|
|
|
|
2019-03-30 04:15:06 +08:00
|
|
|
The MLIR conditional branch operation is not allowed to target the entry block
|
|
|
|
for a function. The two destinations of the conditional branch operation are
|
2019-01-03 04:32:30 +08:00
|
|
|
allowed to be the same.
|
|
|
|
|
2019-03-30 04:15:06 +08:00
|
|
|
The following example illustrates a function with a conditional branch operation
|
|
|
|
that targets the same block:
|
2019-01-03 04:32:30 +08:00
|
|
|
|
|
|
|
```mlir {.mlir}
|
2019-04-07 10:49:38 +08:00
|
|
|
func @select(i32, i32, i1) -> i32 {
|
|
|
|
^bb0(%a : i32, %b :i32, %flag : i1) :
|
2019-01-03 04:32:30 +08:00
|
|
|
// Both targets are the same, operands differ
|
|
|
|
cond_br %flag, ^bb1(%a : i32), ^bb1(%b : i32)
|
|
|
|
|
|
|
|
^bb1(%x : i32) :
|
|
|
|
return %x : i32
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
##### 'return' terminator operation
|
2019-01-03 04:32:30 +08:00
|
|
|
|
|
|
|
Syntax:
|
|
|
|
|
|
|
|
``` {.ebnf}
|
|
|
|
operation ::= `return` (ssa-use-list `:` type-list-no-parens)?
|
|
|
|
```
|
|
|
|
|
2019-03-30 04:15:06 +08:00
|
|
|
The `return` terminator operation represents the completion of a function, and
|
2019-01-03 04:32:30 +08:00
|
|
|
produces the result values. The count and types of the operands must match the
|
|
|
|
result types of the enclosing function. It is legal for multiple blocks in a
|
|
|
|
single function to return.
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
### Core Operations
|
2018-10-25 00:47:36 +08:00
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
#### 'call' operation
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
Syntax:
|
|
|
|
|
|
|
|
``` {.ebnf}
|
2019-03-29 05:58:52 +08:00
|
|
|
operation ::= `call` function-id `(` ssa-use-list? `)` `:` function-type
|
2018-10-25 00:47:36 +08:00
|
|
|
```
|
|
|
|
|
|
|
|
The `call` operation represents a direct call to a function. The operands and
|
|
|
|
result types of the call must match the specified function type. The callee is
|
|
|
|
encoded as a function attribute named "callee".
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
2018-11-14 23:52:12 +08:00
|
|
|
```mlir {.mlir}
|
2019-02-06 08:29:25 +08:00
|
|
|
// Calling the function my_add.
|
2018-10-25 00:47:36 +08:00
|
|
|
%31 = call @my_add(%0, %1) : (tensor<16xf32>, tensor<16xf32>) -> tensor<16xf32>
|
|
|
|
```
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
#### 'call_indirect' operation
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
Syntax:
|
|
|
|
|
|
|
|
``` {.ebnf}
|
2019-03-29 05:58:52 +08:00
|
|
|
operation ::= `call_indirect` ssa-use `(` ssa-use-list? `)` `:` function-type
|
2018-10-25 00:47:36 +08:00
|
|
|
```
|
|
|
|
|
|
|
|
The `call_indirect` operation represents an indirect call to a value of function
|
|
|
|
type. Functions are first class types in MLIR, and may be passed as arguments
|
2018-12-29 05:07:39 +08:00
|
|
|
and merged together with block arguments. The operands and result types of the
|
|
|
|
call must match the specified function type.
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
Function values can be created with the
|
2019-04-05 23:19:42 +08:00
|
|
|
[`constant` operation](#constant-operation).
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
Example:
|
|
|
|
|
2018-11-14 23:52:12 +08:00
|
|
|
```mlir {.mlir}
|
2018-10-25 00:47:36 +08:00
|
|
|
%31 = call_indirect %15(%0, %1)
|
|
|
|
: (tensor<16xf32>, tensor<16xf32>) -> tensor<16xf32>
|
|
|
|
```
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
#### 'dim' operation
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
Syntax:
|
|
|
|
|
|
|
|
``` {.ebnf}
|
|
|
|
operation ::= ssa-id `=` `dim` ssa-id `,` integer-literal `:` type
|
|
|
|
```
|
|
|
|
|
|
|
|
The `dim` operation takes a memref or tensor operand and a dimension index, and
|
2019-04-05 23:19:42 +08:00
|
|
|
returns an [`index`](#index-type) that is the size of that dimension.
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
The `dim` operation is represented with a single integer attribute named
|
|
|
|
`index`, and the type specifies the type of the memref or tensor operand.
|
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
2018-11-14 23:52:12 +08:00
|
|
|
```mlir {.mlir}
|
2018-10-25 00:47:36 +08:00
|
|
|
// Always returns 4, can be constant folded:
|
|
|
|
%x = dim %A, 0 : tensor<4 x ? x f32>
|
|
|
|
|
|
|
|
// Returns the dynamic dimension of %A.
|
|
|
|
%y = dim %A, 1 : tensor<4 x ? x f32>
|
|
|
|
|
2019-01-24 03:26:56 +08:00
|
|
|
// Equivalent generic form:
|
2019-03-03 10:03:03 +08:00
|
|
|
%x = "std.dim"(%A){index: 0} : (tensor<4 x ? x f32>) -> index
|
|
|
|
%y = "std.dim"(%A){index: 1} : (tensor<4 x ? x f32>) -> index
|
2018-10-25 00:47:36 +08:00
|
|
|
```
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
### Memory Operations
|
2018-10-25 00:47:36 +08:00
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
#### 'alloc' operation
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
Syntax:
|
|
|
|
|
|
|
|
``` {.ebnf}
|
|
|
|
operation ::= ssa-id `=` `alloc` dim-and-symbol-use-list `:` memref-type
|
|
|
|
```
|
|
|
|
|
|
|
|
Allocates a new memref of specified type. Values required for dynamic dimension
|
|
|
|
sizes are passed as arguments in parentheses (in the same order in which they
|
|
|
|
appear in the shape signature of the memref) while the symbols required by the
|
|
|
|
layout map are passed in the square brackets in lexicographical order. If no
|
|
|
|
layout maps are specified in the memref, then an identity mapping is used.
|
|
|
|
|
2019-03-30 04:15:06 +08:00
|
|
|
The buffer referenced by a memref type is created by the `alloc` operation, and
|
|
|
|
destroyed by the `dealloc` operation.
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
Example:
|
|
|
|
|
2018-11-14 23:52:12 +08:00
|
|
|
```mlir {.mlir}
|
2018-10-25 00:47:36 +08:00
|
|
|
// Allocating memref for a fully static shape.
|
2019-04-06 09:34:49 +08:00
|
|
|
%A = alloc() : memref<1024x64xf32, #layout_map0, memspace0>
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
// %M, %N, %x, %y are SSA values of integer type. M and N are bound to the
|
|
|
|
// two unknown dimensions of the type and x/y are bound to symbols in
|
|
|
|
// #layout_map1.
|
2019-04-06 09:34:49 +08:00
|
|
|
%B = alloc(%M, %N)[%x, %y] : memref<?x?xf32, #layout_map1, memspace1>
|
2018-10-25 00:47:36 +08:00
|
|
|
```
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
#### 'alloc_static' operation
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
Syntax:
|
|
|
|
|
|
|
|
``` {.ebnf}
|
|
|
|
operation ::=
|
|
|
|
ssa-id `=` `alloc_static` `(` integer-literal `)` : memref-type
|
|
|
|
```
|
|
|
|
|
|
|
|
Allocates a new memref of specified type with a fixed base pointer location in
|
|
|
|
memory. 'alloc_static' does not support types that have dynamic shapes or that
|
|
|
|
require dynamic symbols in their layout function (use the
|
2019-04-05 23:19:42 +08:00
|
|
|
[`alloc` operation](#alloc-operation) in those cases).
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
Example:
|
|
|
|
|
2018-11-14 23:52:12 +08:00
|
|
|
```mlir {.mlir}
|
2019-04-06 09:34:49 +08:00
|
|
|
%A = alloc_static(0x1232a00) : memref<1024 x 64 x f32, #layout_map0, memspace0>
|
2018-10-25 00:47:36 +08:00
|
|
|
```
|
|
|
|
|
2019-03-30 04:15:06 +08:00
|
|
|
The `alloc_static` operation is used to represent code after buffer allocation
|
2018-10-25 00:47:36 +08:00
|
|
|
has been performed.
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
#### 'dealloc' operation
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
Syntax:
|
|
|
|
|
|
|
|
``` {.ebnf}
|
|
|
|
operation ::= `dealloc` ssa-use `:` memref-type
|
|
|
|
```
|
|
|
|
|
|
|
|
Delineates the end of the lifetime of the memory corresponding to a memref
|
2019-04-05 23:19:42 +08:00
|
|
|
allocation. It is paired with an [`alloc`](#alloc-operation) or
|
|
|
|
[`alloc_static`](#alloc-static-operation) operation.
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
Example:
|
|
|
|
|
2018-11-14 23:52:12 +08:00
|
|
|
```mlir {.mlir}
|
2019-04-06 09:34:49 +08:00
|
|
|
dealloc %A : memref<128 x f32, #layout, memspace0>
|
2018-10-25 00:47:36 +08:00
|
|
|
```
|
|
|
|
|
|
|
|
#### 'dma_start' operation
|
|
|
|
|
|
|
|
Syntax:
|
|
|
|
|
|
|
|
``` {.ebnf}
|
2019-02-20 02:26:53 +08:00
|
|
|
operation ::= `dma_start` ssa-use`[`ssa-use-list`]` `,`
|
|
|
|
ssa-use`[`ssa-use-list`]` `,` ssa-use `,`
|
|
|
|
ssa-use`[`ssa-use-list`]` (`,` ssa-use, ssa-use)?
|
|
|
|
`:` memref-type `,` memref-type `,` memref-type
|
2018-10-25 00:47:36 +08:00
|
|
|
```
|
|
|
|
|
|
|
|
Starts a non-blocking DMA operation that transfers data from a source memref to
|
|
|
|
a destination memref. The operands include the source and destination memref's
|
|
|
|
each followed by its indices, size of the data transfer in terms of the number
|
2019-02-20 02:26:53 +08:00
|
|
|
of elements (of the elemental type of the memref), a tag memref with its
|
|
|
|
indices, and optionally two additional arguments corresponding to the stride (in
|
|
|
|
terms of number of elements) and the number of elements to transfer per stride.
|
|
|
|
The tag location is used by a dma_wait operation to check for completion. The
|
2019-03-30 04:15:06 +08:00
|
|
|
indices of the source memref, destination memref, and the tag memref have the
|
|
|
|
same restrictions as any load/store operation in a affine context (whenever DMA
|
2019-02-20 02:26:53 +08:00
|
|
|
operations appear in an affine context). See
|
2019-02-06 08:29:25 +08:00
|
|
|
[restrictions on dimensions and symbols](Dialects/Affine.md#restrictions-on-dimensions-and-symbols)
|
|
|
|
in affine contexts. This allows powerful static analysis and transformations in
|
|
|
|
the presence of such DMAs including rescheduling, pipelining / overlap with
|
|
|
|
computation, and checking for matching start/end operations. The source and
|
|
|
|
destination memref need not be of the same dimensionality, but need to have the
|
|
|
|
same elemental type.
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
For example, a `dma_start` operation that transfers 32 vector elements from a
|
|
|
|
memref `%src` at location `[%i, %j]` to memref `%dst` at `[%k, %l]` would be
|
|
|
|
specified as shown below.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
2018-11-14 23:52:12 +08:00
|
|
|
```mlir {.mlir}
|
2018-10-25 00:47:36 +08:00
|
|
|
%size = constant 32 : index
|
|
|
|
%tag = alloc() : memref<1 x i32, (d0) -> (d0), 4>
|
|
|
|
%idx = constant 0 : index
|
|
|
|
dma_start %src[%i, %j], %dst[%k, %l], %size, %tag[%idx] :
|
|
|
|
memref<40 x 8 x vector<16xf32>, (d0) -> (d0), 0>,
|
|
|
|
memref<2 x 4 x vector<16xf32>, (d0) -> (d0), 2>,
|
|
|
|
memref<1 x i32>, (d0) -> (d0), 4>
|
|
|
|
```
|
|
|
|
|
|
|
|
#### 'dma_wait' operation
|
|
|
|
|
|
|
|
Syntax:
|
|
|
|
|
|
|
|
```
|
2019-02-20 02:26:53 +08:00
|
|
|
operation ::= `dma_wait` ssa-use`[`ssa-use-list`]` `,` ssa-use `:` memref-type
|
2018-10-25 00:47:36 +08:00
|
|
|
```
|
|
|
|
|
|
|
|
Blocks until the completion of a DMA operation associated with the tag element
|
|
|
|
specified with a tag memref and its indices. The operands include the tag memref
|
|
|
|
followed by its indices and the number of elements associated with the DMA being
|
|
|
|
waited on. The indices of the tag memref have the same restrictions as
|
2019-01-03 04:32:30 +08:00
|
|
|
load/store indices.
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
Example:
|
|
|
|
|
2018-11-14 23:52:12 +08:00
|
|
|
```mlir {.mlir}
|
2018-10-25 00:47:36 +08:00
|
|
|
dma_wait %tag[%index], %num_elements : memref<1 x i32, (d0) -> (d0), 4>
|
|
|
|
```
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
#### 'extract_element' operation
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
Syntax:
|
|
|
|
|
|
|
|
```
|
|
|
|
operation ::= ssa-id `=` `extract_element` ssa-use `[` ssa-use-list `]` `:` type
|
|
|
|
```
|
|
|
|
|
|
|
|
The `extract_element` op reads a tensor or vector and returns one element from
|
|
|
|
it specified by an index list. The output of the 'extract_element' is a new
|
|
|
|
value with the same type as the elements of the tensor or vector. The arity of
|
|
|
|
indices matches the rank of the accessed value (i.e., if a tensor is of rank 3,
|
|
|
|
then 3 indices are required for the extract. The indices should all be of
|
|
|
|
`affine_int` type.
|
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
2018-11-14 23:52:12 +08:00
|
|
|
```mlir {.mlir}
|
2018-10-25 00:47:36 +08:00
|
|
|
%3 = extract_element %v[%1, %2] : vector<4x4xi32>
|
|
|
|
%4 = extract_element %t[%1, %2] : tensor<4x4xi32>
|
|
|
|
%5 = extract_element %ut[%1, %2] : tensor<*xi32>
|
|
|
|
```
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
#### 'load' operation
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
Syntax:
|
|
|
|
|
|
|
|
``` {.ebnf}
|
|
|
|
operation ::= ssa-id `=` `load` ssa-use `[` ssa-use-list `]` `:` memref-type
|
|
|
|
```
|
|
|
|
|
|
|
|
The `load` op reads an element from a memref specified by an index list. The
|
|
|
|
output of load is a new value with the same type as the elements of the memref.
|
|
|
|
The arity of indices is the rank of the memref (i.e., if the memref loaded from
|
|
|
|
is of rank 3, then 3 indices are required for the load following the memref
|
|
|
|
identifier).
|
|
|
|
|
2019-03-26 01:14:34 +08:00
|
|
|
In an `affine.if` or `affine.for` body, the indices of a load are restricted to
|
|
|
|
SSA values bound to surrounding loop induction variables,
|
2019-01-28 01:33:19 +08:00
|
|
|
[symbols](#dimensions-and-symbols), results of a
|
2019-04-05 23:19:42 +08:00
|
|
|
[`constant` operation](#constant-operation), or the result of an `affine.apply`
|
|
|
|
operation that can in turn take as arguments all of the aforementioned SSA
|
|
|
|
values or the recursively result of such an `affine.apply` operation.
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
Example:
|
|
|
|
|
2018-11-14 23:52:12 +08:00
|
|
|
```mlir {.mlir}
|
2019-02-07 03:08:18 +08:00
|
|
|
%1 = affine.apply (d0, d1) -> (3*d0) (%i, %j)
|
|
|
|
%2 = affine.apply (d0, d1) -> (d1+1) (%i, %j)
|
2019-04-06 09:34:49 +08:00
|
|
|
%12 = load %A[%1, %2] : memref<8x?xi32, #layout, memspace0>
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
// Example of an indirect load (treated as non-affine)
|
2019-02-07 03:08:18 +08:00
|
|
|
%3 = affine.apply (d0) -> (2*d0 + 1)(%12)
|
2019-04-06 09:34:49 +08:00
|
|
|
%13 = load %A[%3, %2] : memref<4x?xi32, #layout, memspace0>
|
2018-10-25 00:47:36 +08:00
|
|
|
```
|
|
|
|
|
2019-03-30 04:15:06 +08:00
|
|
|
**Context:** The `load` and `store` operations are specifically crafted to fully
|
|
|
|
resolve a reference to an element of a memref, and (in affine `affine.if` and
|
|
|
|
`affine.for` operations) the compiler can follow use-def chains (e.g. through
|
2019-04-05 23:19:42 +08:00
|
|
|
[`affine.apply`](Dialects/Affine.md#affineapply-operation) operations) to
|
2019-03-30 04:15:06 +08:00
|
|
|
precisely analyze references at compile-time using polyhedral techniques. This
|
|
|
|
is possible because of the
|
2019-02-06 08:29:25 +08:00
|
|
|
[restrictions on dimensions and symbols](Dialects/Affine.md#restrictions-on-dimensions-and-symbols)
|
|
|
|
in these contexts.
|
2018-10-25 00:47:36 +08:00
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
#### 'store' operation
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
Syntax:
|
|
|
|
|
|
|
|
``` {.ebnf}
|
|
|
|
operation ::= `store` ssa-use `,` ssa-use
|
|
|
|
`[` ssa-use-list `]` `:` memref-type
|
|
|
|
```
|
|
|
|
|
|
|
|
Store value to memref location given by indices. The value stored should have
|
|
|
|
the same type as the elemental type of the memref. The number of arguments
|
|
|
|
provided within brackets need to match the rank of the memref.
|
|
|
|
|
2019-02-06 08:29:25 +08:00
|
|
|
In an affine context, the indices of a store are restricted to SSA values bound
|
|
|
|
to surrounding loop induction variables,
|
2019-04-05 23:19:42 +08:00
|
|
|
[symbols](Dialects/Affine.md#restrictions-on-dimensions-and-symbols), results of
|
|
|
|
a [`constant` operation](#constant-operation), or the result of an
|
|
|
|
[`affine.apply`](Dialects/Affine.md#affineapply-operation) operation that can in
|
|
|
|
turn take as arguments all of the aforementioned SSA values or the recursively
|
|
|
|
result of such an `affine.apply` operation.
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
Example:
|
|
|
|
|
2018-11-14 23:52:12 +08:00
|
|
|
```mlir {.mlir}
|
2019-04-06 09:34:49 +08:00
|
|
|
store %100, %A[%1, 1023] : memref<4x?xf32, #layout, memspace0>
|
2018-10-25 00:47:36 +08:00
|
|
|
```
|
|
|
|
|
2019-03-30 04:15:06 +08:00
|
|
|
**Context:** The `load` and `store` operations are specifically crafted to fully
|
|
|
|
resolve a reference to an element of a memref, and (in polyhedral `affine.if`
|
|
|
|
and `affine.for` operations) the compiler can follow use-def chains (e.g.
|
2019-04-05 23:19:42 +08:00
|
|
|
through [`affine.apply`](Dialects/Affine.md#affineapply-operation) operations)
|
|
|
|
to precisely analyze references at compile-time using polyhedral techniques.
|
|
|
|
This is possible because of the
|
|
|
|
[restrictions on dimensions and symbols](Dialects/Affine.md#restrictions-on-dimensions-and-symbols)
|
2019-02-06 08:29:25 +08:00
|
|
|
in these contexts.
|
2018-10-25 00:47:36 +08:00
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
#### 'tensor_load' operation
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
Syntax:
|
|
|
|
|
|
|
|
``` {.ebnf}
|
|
|
|
operation ::= ssa-id `=` `tensor_load` ssa-use-and-type
|
|
|
|
```
|
|
|
|
|
|
|
|
Create a tensor from a memref, making an independent copy of the element data.
|
|
|
|
The result value is a tensor whose shape and element type match the memref
|
|
|
|
operand.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
2018-11-14 23:52:12 +08:00
|
|
|
```mlir {.mlir}
|
2018-10-25 00:47:36 +08:00
|
|
|
// Produces a value of tensor<4x?xf32> type.
|
2019-04-06 09:34:49 +08:00
|
|
|
%12 = tensor_load %10 : memref<4x?xf32, #layout, memspace0>
|
2018-10-25 00:47:36 +08:00
|
|
|
```
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
#### 'tensor_store' operation
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
Syntax:
|
|
|
|
|
|
|
|
``` {.ebnf}
|
|
|
|
operation ::= `tensor_store` ssa-use `,` ssa-use `:` memref-type
|
|
|
|
```
|
|
|
|
|
|
|
|
Stores the contents of a tensor into a memref. The first operand is a value of
|
|
|
|
tensor type, the second operand is a value of memref type. The shapes and
|
|
|
|
element types of these must match, and are specified by the memref type.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
2018-11-14 23:52:12 +08:00
|
|
|
```mlir {.mlir}
|
2018-10-25 00:47:36 +08:00
|
|
|
%9 = dim %8, 1 : tensor<4x?xf32>
|
2019-04-06 09:34:49 +08:00
|
|
|
%10 = alloc(%9) : memref<4x?xf32, #layout, memspace0>
|
|
|
|
tensor_store %8, %10 : memref<4x?xf32, #layout, memspace0>
|
2018-10-25 00:47:36 +08:00
|
|
|
```
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
### Arithmetic Operations
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
Basic arithmetic in MLIR is specified by standard operations described in this
|
|
|
|
section.
|
|
|
|
|
|
|
|
TODO: "sub" etc. Let's not get excited about filling this out yet, we can define
|
|
|
|
these on demand. We should be highly informed by and learn from the operations
|
|
|
|
supported by HLO and LLVM.
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
#### 'addi' operation
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
2018-11-14 23:52:12 +08:00
|
|
|
```mlir {.mlir}
|
2018-10-25 00:47:36 +08:00
|
|
|
// Scalar addition.
|
|
|
|
%a = addi %b, %c : i64
|
|
|
|
|
|
|
|
// SIMD vector element-wise addition, e.g. for Intel SSE.
|
|
|
|
%f = addi %g, %h : vector<4xi32>
|
|
|
|
|
|
|
|
// Tensor element-wise addition, analogous to HLO's add operation.
|
|
|
|
%x = addi %y, %z : tensor<4x?xi8>
|
|
|
|
```
|
|
|
|
|
|
|
|
The `addi` operation takes two operands and returns one result, each of these is
|
|
|
|
required to be the same type. This type may be an integer scalar type, a vector
|
|
|
|
whose element type is integer, or a tensor of integers. It has no standard
|
|
|
|
attributes.
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
#### 'addf' operation
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
2018-11-14 23:52:12 +08:00
|
|
|
```mlir {.mlir}
|
2018-10-25 00:47:36 +08:00
|
|
|
// Scalar addition.
|
|
|
|
%a = addf %b, %c : f64
|
|
|
|
|
|
|
|
// SIMD vector addition, e.g. for Intel SSE.
|
|
|
|
%f = addf %g, %h : vector<4xf32>
|
|
|
|
|
|
|
|
// Tensor addition, analogous to HLO's add operation.
|
|
|
|
%x = addf %y, %z : tensor<4x?xbf16>
|
|
|
|
```
|
|
|
|
|
|
|
|
The `addf` operation takes two operands and returns one result, each of these is
|
|
|
|
required to be the same type. This type may be a floating point scalar type, a
|
|
|
|
vector whose element type is a floating point type, or a floating point tensor.
|
|
|
|
|
|
|
|
It has no standard attributes.
|
|
|
|
|
|
|
|
TODO: In the distant future, this will accept
|
|
|
|
optional attributes for fast math, contraction, rounding mode, and other
|
|
|
|
controls.
|
|
|
|
|
2019-04-08 15:00:46 +08:00
|
|
|
#### 'and' operation
|
|
|
|
|
|
|
|
Bitwise integer and.
|
|
|
|
|
|
|
|
Syntax:
|
|
|
|
|
|
|
|
``` {.ebnf}
|
|
|
|
operation ::= ssa-id `=` `and` ssa-use, ssa-use `:` type
|
|
|
|
```
|
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
|
|
|
```mlir {.mlir}
|
|
|
|
// Scalar integer bitwise and.
|
|
|
|
%a = and %b, %c : i64
|
|
|
|
|
|
|
|
// SIMD vector element-wise bitwise integer and.
|
|
|
|
%f = and %g, %h : vector<4xi32>
|
|
|
|
|
|
|
|
// Tensor element-wise bitwise integer and.
|
|
|
|
%x = and %y, %z : tensor<4x?xi8>
|
|
|
|
```
|
|
|
|
|
|
|
|
The `and` operation takes two operands and returns one result, each of these is
|
|
|
|
required to be the same type. This type may be an integer scalar type, a vector
|
|
|
|
whose element type is integer, or a tensor of integers. It has no standard
|
|
|
|
attributes.
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
#### 'cmpi' operation
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
2018-11-14 23:52:12 +08:00
|
|
|
```mlir {.mlir}
|
2019-01-24 03:26:56 +08:00
|
|
|
// Custom form of scalar "signed less than" comparison.
|
2018-11-08 20:02:00 +08:00
|
|
|
%x = cmpi "slt", %lhs, %rhs : i32
|
|
|
|
|
2019-01-24 03:26:56 +08:00
|
|
|
// Generic form of the same operation.
|
2019-03-03 10:03:03 +08:00
|
|
|
%x = "std.cmpi"(%lhs, %rhs){predicate: 2} : (i32, i32) -> i1
|
2018-11-08 20:02:00 +08:00
|
|
|
|
2019-01-24 03:26:56 +08:00
|
|
|
// Custom form of vector equality comparison.
|
2018-11-08 20:02:00 +08:00
|
|
|
%x = cmpi "eq", %lhs, %rhs : vector<4xi64>
|
|
|
|
|
2019-01-24 03:26:56 +08:00
|
|
|
// Generic form of the same operation.
|
2019-03-03 10:03:03 +08:00
|
|
|
%x = "std.cmpi"(%lhs, %rhs){predicate: 0}
|
2018-11-08 20:02:00 +08:00
|
|
|
: (vector<4xi64>, vector<4xi64> -> vector<4xi1>
|
|
|
|
```
|
|
|
|
|
|
|
|
The `cmpi` operation is a generic comparison for integer-like types. Its two
|
|
|
|
arguments can be integers, vectors or tensors thereof as long as their types
|
|
|
|
match. The operation produces an i1 for the former case, a vector or a tensor of
|
|
|
|
i1 with the same shape as inputs in the other cases.
|
|
|
|
|
|
|
|
Its first argument is an attribute that defines which type of comparison is
|
|
|
|
performed. The following comparisons are supported:
|
|
|
|
|
|
|
|
- equal (mnemonic: `"eq"`; integer value: `0`)
|
|
|
|
- not equal (mnemonic: `"ne"`; integer value: `1`)
|
|
|
|
- signed less than (mnemonic: `"slt"`; integer value: `2`)
|
|
|
|
- signed less than or equal (mnemonic: `"slt"`; integer value: `3`)
|
|
|
|
- signed greater than (mnemonic: `"sgt"`; integer value: `4`)
|
|
|
|
- signed greater than or equal (mnemonic: `"sge"`; integer value: `5`)
|
|
|
|
- unsigned less than (mnemonic: `"ult"`; integer value: `6`)
|
|
|
|
- unsigned less than or equal (mnemonic: `"ult"`; integer value: `7`)
|
|
|
|
- unsigned greater than (mnemonic: `"ugt"`; integer value: `8`)
|
|
|
|
- unsigned greater than or equal (mnemonic: `"uge"`; integer value: `9`)
|
|
|
|
|
|
|
|
The result is `1` if the comparison is true and `0` otherwise. For vector or
|
|
|
|
tensor operands, the comparison is performed elementwise and the element of the
|
|
|
|
result indicates whether the comparison is true for the operand elements with
|
|
|
|
the same indices as those of the result.
|
|
|
|
|
2019-01-24 03:26:56 +08:00
|
|
|
Note: while the custom assembly form uses strings, the actual underlying
|
2018-11-08 20:02:00 +08:00
|
|
|
attribute has integer type (or rather enum class in C++ code) as seen from the
|
2019-01-24 03:26:56 +08:00
|
|
|
generic assembly form. String literals are used to improve readability of the IR
|
|
|
|
by humans.
|
2018-11-08 20:02:00 +08:00
|
|
|
|
|
|
|
This operation only applies to integer-like operands, but not floats. The main
|
|
|
|
reason being that comparison operations have diverging sets of attributes:
|
|
|
|
integers require sign specification while floats require various floating
|
|
|
|
point-related particularities, e.g., `-ffast-math` behavior, IEEE754 compliance,
|
|
|
|
etc ([rationale](Rationale.md#splitting-floating-point-vs-integer-operations)).
|
|
|
|
The type of comparison is specified as attribute to avoid introducing ten
|
|
|
|
similar operations, taking into account that they are often implemented using
|
2019-04-05 23:19:42 +08:00
|
|
|
the same operation downstream
|
|
|
|
([rationale](Rationale.md#specifying-comparison-kind-as-attribute)). The
|
2018-11-08 20:02:00 +08:00
|
|
|
separation between signed and unsigned order comparisons is necessary because of
|
|
|
|
integers being signless. The comparison operation must know how to interpret
|
|
|
|
values with the foremost bit being set: negatives in two's complement or large
|
2019-04-05 23:19:42 +08:00
|
|
|
positives
|
|
|
|
([rationale](Rationale.md#specifying-sign-in-integer-comparison-operations)).
|
2018-10-25 00:47:36 +08:00
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
#### 'constant' operation
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
Syntax:
|
|
|
|
|
|
|
|
``` {.ebnf}
|
|
|
|
operation ::= ssa-id `=` `constant` attribute-value `:` type
|
|
|
|
```
|
|
|
|
|
|
|
|
The `constant` operation produces an SSA value equal to some constant specified
|
|
|
|
by an attribute. This is the way that MLIR uses to form simple integer and
|
|
|
|
floating point constants, as well as more exotic things like references to
|
|
|
|
functions and (TODO!) tensor/vector constants.
|
|
|
|
|
|
|
|
The `constant` operation is represented with a single attribute named "value".
|
|
|
|
The type specifies the result type of the operation.
|
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
2018-11-14 23:52:12 +08:00
|
|
|
```mlir {.mlir}
|
2018-10-25 00:47:36 +08:00
|
|
|
// Integer constant
|
|
|
|
%1 = constant 42 : i32
|
|
|
|
|
|
|
|
// Reference to function @myfn.
|
|
|
|
%3 = constant @myfn : (tensor<16xf32>, f32) -> tensor<16xf32>
|
|
|
|
|
2019-01-24 03:26:56 +08:00
|
|
|
// Equivalent generic forms
|
2019-03-03 10:03:03 +08:00
|
|
|
%1 = "std.constant"(){value: 42} : i32
|
|
|
|
%3 = "std.constant"(){value: @myfn}
|
2018-10-25 00:47:36 +08:00
|
|
|
: () -> (tensor<16xf32>, f32) -> tensor<16xf32>
|
|
|
|
|
|
|
|
```
|
|
|
|
|
2019-04-28 05:26:41 +08:00
|
|
|
MLIR does not allow direct references to functions in SSA operands because the
|
|
|
|
compiler is multithreaded, and disallowing SSA values to directly reference a
|
|
|
|
function simplifies this
|
2019-01-07 06:08:42 +08:00
|
|
|
([rationale](Rationale.md#multithreading-the-compiler)).
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
#### 'divis' operation
|
2019-01-07 06:08:42 +08:00
|
|
|
|
|
|
|
Signed integer division. Rounds towards zero. Treats the leading bit as sign,
|
|
|
|
i.e. `6 / -2 = -3`.
|
|
|
|
|
|
|
|
Note: the semantics of division by zero or signed division overflow (minimum
|
|
|
|
value divided by -1) is TBD; do NOT assume any specific behavior.
|
|
|
|
|
|
|
|
Syntax:
|
|
|
|
|
|
|
|
``` {.ebnf}
|
|
|
|
operation ::= ssa-id `=` `divis` ssa-use, ssa-use `:` type
|
|
|
|
```
|
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
|
|
|
```mlir {.mlir}
|
|
|
|
// Scalar signed integer division.
|
|
|
|
%a = divis %b, %c : i64
|
|
|
|
|
|
|
|
// SIMD vector element-wise division.
|
|
|
|
%f = divis %g, %h : vector<4xi32>
|
|
|
|
|
|
|
|
// Tensor element-wise integer division.
|
|
|
|
%x = divis %y, %z : tensor<4x?xi8>
|
|
|
|
```
|
|
|
|
|
|
|
|
The `divis` operation takes two operands and returns one result, each of these
|
|
|
|
is required to be the same type. This type may be an integer scalar type, a
|
|
|
|
vector whose element type is integer, or a tensor of integers. It has no
|
|
|
|
standard attributes.
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
#### 'diviu' operation
|
2019-01-07 06:08:42 +08:00
|
|
|
|
|
|
|
Unsigned integer division. Rounds towards zero. Treats the leading bit as the
|
|
|
|
most significant, i.e. for `i16` given two's complement representation, `6 /
|
|
|
|
-2 = 6 / (2^16 - 2) = 0`.
|
|
|
|
|
|
|
|
Note: the semantics of division by zero is TBD; do NOT assume any specific
|
|
|
|
behavior.
|
|
|
|
|
|
|
|
Syntax:
|
|
|
|
|
|
|
|
``` {.ebnf}
|
|
|
|
operation ::= ssa-id `=` `diviu` ssa-use, ssa-use `:` type
|
|
|
|
```
|
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
|
|
|
```mlir {.mlir}
|
|
|
|
// Scalar unsigned integer division.
|
|
|
|
%a = diviu %b, %c : i64
|
|
|
|
|
|
|
|
// SIMD vector element-wise division.
|
|
|
|
%f = diviu %g, %h : vector<4xi32>
|
|
|
|
|
|
|
|
// Tensor element-wise integer division.
|
|
|
|
%x = diviu %y, %z : tensor<4x?xi8>
|
|
|
|
```
|
|
|
|
|
|
|
|
The `diviu` operation takes two operands and returns one result, each of these
|
|
|
|
is required to be the same type. This type may be an integer scalar type, a
|
|
|
|
vector whose element type is integer, or a tensor of integers. It has no
|
|
|
|
standard attributes.
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
#### 'memref_cast' operation
|
|
|
|
|
|
|
|
Syntax:
|
|
|
|
|
|
|
|
``` {.ebnf}
|
|
|
|
operation ::= ssa-id `=` `memref_cast` ssa-use `:` type `to` type
|
|
|
|
```
|
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
2018-11-14 23:52:12 +08:00
|
|
|
```mlir {.mlir}
|
2018-12-06 08:10:05 +08:00
|
|
|
// Discard static dimension information.
|
2018-10-25 00:47:36 +08:00
|
|
|
%3 = memref_cast %2 : memref<4x?xf32> to memref<?x?xf32>
|
|
|
|
|
2018-12-06 08:10:05 +08:00
|
|
|
// Convert to a type with more known dimensions.
|
|
|
|
%4 = memref_cast %3 : memref<?x?xf32> to memref<4x?xf32>
|
2018-10-25 00:47:36 +08:00
|
|
|
```
|
|
|
|
|
|
|
|
Convert a memref from one type to an equivalent type without changing any data
|
|
|
|
elements. The source and destination types must both be memref types with the
|
|
|
|
same element type, same mappings, same address space, and same rank, yet the
|
|
|
|
source and destination types may not be the same. The operation is invalid if
|
|
|
|
converting to a mismatching constant dimension.
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
#### 'mulf' operation
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
2018-11-14 23:52:12 +08:00
|
|
|
```mlir {.mlir}
|
2018-10-25 00:47:36 +08:00
|
|
|
// Scalar multiplication.
|
|
|
|
%a = mulf %b, %c : f64
|
|
|
|
|
|
|
|
// SIMD pointwise vector multiplication, e.g. for Intel SSE.
|
|
|
|
%f = mulf %g, %h : vector<4xf32>
|
|
|
|
|
|
|
|
// Tensor pointwise multiplication, analogous to HLO's pointwise multiply operation.
|
|
|
|
%x = mulf %y, %z : tensor<4x?xbf16>
|
|
|
|
```
|
|
|
|
|
|
|
|
The `mulf` operation takes two operands and returns one result, each of these is
|
|
|
|
required to be the same type. This type may be a floating point scalar type, a
|
|
|
|
vector whose element type is a floating point type, or a floating point tensor.
|
|
|
|
|
|
|
|
It has no standard attributes.
|
|
|
|
|
|
|
|
TODO: In the distant future, this will accept
|
|
|
|
optional attributes for fast math, contraction, rounding mode, and other
|
|
|
|
controls.
|
|
|
|
|
2019-04-08 15:00:46 +08:00
|
|
|
#### 'or' operation
|
|
|
|
|
|
|
|
Bitwise integer or.
|
|
|
|
|
|
|
|
Syntax:
|
|
|
|
|
|
|
|
``` {.ebnf}
|
|
|
|
operation ::= ssa-id `=` `or` ssa-use, ssa-use `:` type
|
|
|
|
```
|
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
|
|
|
```mlir {.mlir}
|
|
|
|
// Scalar integer bitwise or.
|
|
|
|
%a = or %b, %c : i64
|
|
|
|
|
|
|
|
// SIMD vector element-wise bitwise integer or.
|
|
|
|
%f = or %g, %h : vector<4xi32>
|
|
|
|
|
|
|
|
// Tensor element-wise bitwise integer or.
|
|
|
|
%x = or %y, %z : tensor<4x?xi8>
|
|
|
|
```
|
|
|
|
|
|
|
|
The `or` operation takes two operands and returns one result, each of these is
|
|
|
|
required to be the same type. This type may be an integer scalar type, a vector
|
|
|
|
whose element type is integer, or a tensor of integers. It has no standard
|
|
|
|
attributes.
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
#### 'remis' operation
|
2019-01-07 06:08:42 +08:00
|
|
|
|
|
|
|
Signed integer division remainder. Treats the leading bit as sign, i.e. `6 %
|
|
|
|
-2 = 0`.
|
|
|
|
|
|
|
|
Note: the semantics of division by zero is TBD; do NOT assume any specific
|
|
|
|
behavior.
|
|
|
|
|
|
|
|
Syntax:
|
|
|
|
|
|
|
|
``` {.ebnf}
|
|
|
|
operation ::= ssa-id `=` `remis` ssa-use, ssa-use `:` type
|
|
|
|
```
|
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
|
|
|
```mlir {.mlir}
|
|
|
|
// Scalar signed integer division remainder.
|
|
|
|
%a = remis %b, %c : i64
|
|
|
|
|
|
|
|
// SIMD vector element-wise division remainder.
|
|
|
|
%f = remis %g, %h : vector<4xi32>
|
|
|
|
|
|
|
|
// Tensor element-wise integer division remainder.
|
|
|
|
%x = remis %y, %z : tensor<4x?xi8>
|
|
|
|
```
|
|
|
|
|
|
|
|
The `remis` operation takes two operands and returns one result, each of these
|
|
|
|
is required to be the same type. This type may be an integer scalar type, a
|
|
|
|
vector whose element type is integer, or a tensor of integers. It has no
|
|
|
|
standard attributes.
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
#### 'remiu' operation
|
2019-01-07 06:08:42 +08:00
|
|
|
|
|
|
|
Unsigned integer division remainder. Treats the leading bit as the most
|
|
|
|
significant, i.e. for `i16`, `6 % -2 = 6 % (2^16 - 2) = 6`.
|
|
|
|
|
|
|
|
Note: the semantics of division by zero is TBD; do NOT assume any specific
|
|
|
|
behavior.
|
|
|
|
|
|
|
|
Syntax:
|
|
|
|
|
|
|
|
``` {.ebnf}
|
|
|
|
operation ::= ssa-id `=` `remiu` ssa-use, ssa-use `:` type
|
|
|
|
```
|
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
|
|
|
```mlir {.mlir}
|
|
|
|
// Scalar unsigned integer division remainder.
|
|
|
|
%a = remiu %b, %c : i64
|
|
|
|
|
|
|
|
// SIMD vector element-wise division remainder.
|
|
|
|
%f = remiu %g, %h : vector<4xi32>
|
|
|
|
|
|
|
|
// Tensor element-wise integer division remainder.
|
|
|
|
%x = remiu %y, %z : tensor<4x?xi8>
|
|
|
|
```
|
|
|
|
|
|
|
|
The `remiu` operation takes two operands and returns one result, each of these
|
|
|
|
is required to be the same type. This type may be an integer scalar type, a
|
|
|
|
vector whose element type is integer, or a tensor of integers. It has no
|
|
|
|
standard attributes.
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
#### 'select' operation
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
Syntax:
|
|
|
|
|
2018-11-28 23:08:55 +08:00
|
|
|
``` {.ebnf}
|
|
|
|
operation ::= ssa-id `=` `select` ssa-use, ssa-use, ssa-use `:` type
|
|
|
|
```
|
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
2018-11-14 23:52:12 +08:00
|
|
|
```mlir {.mlir}
|
2019-01-24 03:26:56 +08:00
|
|
|
// Custom form of scalar selection.
|
2018-11-28 23:08:55 +08:00
|
|
|
%x = select %cond, %true, %false : i32
|
|
|
|
|
2019-01-24 03:26:56 +08:00
|
|
|
// Generic form of the same operation.
|
2019-03-03 10:03:03 +08:00
|
|
|
%x = "std.select"(%cond, %true, %false) : (i1, i32, i32) -> i32
|
2018-11-28 23:08:55 +08:00
|
|
|
|
|
|
|
// Vector selection is element-wise
|
2019-03-03 10:03:03 +08:00
|
|
|
%vx = "std.select"(%vcond, %vtrue, %vfalse)
|
2018-11-28 23:08:55 +08:00
|
|
|
: (vector<42xi1>, vector<42xf32>, vector<42xf32>) -> vector<42xf32>
|
|
|
|
```
|
|
|
|
|
|
|
|
The `select` operation chooses one value based on a binary condition supplied as
|
|
|
|
its first operand. If the value of the first operand is `1`, the second operand
|
|
|
|
is chosen, otherwise the third operand is chosen. The second and the third
|
|
|
|
operand must have the same type.
|
|
|
|
|
|
|
|
The operation applies to vectors and tensors elementwise given the _shape_ of
|
|
|
|
all operands is identical. The choice is made for each element individually
|
|
|
|
based on the value at the same position as the element in the condition operand.
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
The `select` operation combined with [`cmpi`](#cmpi-operation) can be used to
|
2018-11-28 23:08:55 +08:00
|
|
|
implement `min` and `max` with signed or unsigned comparison semantics.
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
#### 'tensor_cast' operation
|
2018-11-28 23:08:55 +08:00
|
|
|
|
|
|
|
Syntax:
|
|
|
|
|
|
|
|
``` {.ebnf}
|
2018-10-25 00:52:06 +08:00
|
|
|
operation ::= ssa-id `=` `tensor_cast` ssa-use `:` type `to` type
|
2018-10-25 00:47:36 +08:00
|
|
|
```
|
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
2018-11-14 23:52:12 +08:00
|
|
|
```mlir {.mlir}
|
2018-10-25 00:47:36 +08:00
|
|
|
// Convert from unknown rank to rank 2 with unknown dimension sizes.
|
2019-03-03 10:03:03 +08:00
|
|
|
%2 = "std.tensor_cast"(%1) : (tensor<*xf32>) -> tensor<?x?xf32>
|
2018-10-25 00:52:06 +08:00
|
|
|
%2 = tensor_cast %1 : tensor<*xf32> to tensor<?x?xf32>
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
// Convert to a type with more known dimensions.
|
2019-03-03 10:03:03 +08:00
|
|
|
%3 = "std.tensor_cast"(%2) : (tensor<?x?xf32>) -> tensor<4x?xf32>
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
// Discard static dimension and rank information.
|
2019-03-03 10:03:03 +08:00
|
|
|
%4 = "std.tensor_cast"(%3) : (tensor<4x?xf32>) -> tensor<?x?xf32>
|
|
|
|
%5 = "std.tensor_cast"(%4) : (tensor<?x?xf32>) -> tensor<*xf32>
|
2018-10-25 00:47:36 +08:00
|
|
|
```
|
|
|
|
|
|
|
|
Convert a tensor from one type to an equivalent type without changing any data
|
|
|
|
elements. The source and destination types must both be tensor types with the
|
|
|
|
same element type, and the source and destination types may not be the same.
|
|
|
|
They must either have the same rank, or one may be an unknown rank. The
|
|
|
|
operation is invalid if converting to a mismatching constant dimension.
|
|
|
|
|
2019-04-08 20:53:59 +08:00
|
|
|
|
|
|
|
#### 'xor' operation
|
|
|
|
|
|
|
|
Bitwise integer xor.
|
|
|
|
|
|
|
|
Syntax:
|
|
|
|
|
|
|
|
``` {.ebnf}
|
|
|
|
operation ::= ssa-id `=` `xor` ssa-use, ssa-use `:` type
|
|
|
|
```
|
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
|
|
|
```mlir {.mlir}
|
|
|
|
// Scalar integer bitwise xor.
|
|
|
|
%a = xor %b, %c : i64
|
|
|
|
|
|
|
|
// SIMD vector element-wise bitwise integer xor.
|
|
|
|
%f = xor %g, %h : vector<4xi32>
|
|
|
|
|
|
|
|
// Tensor element-wise bitwise integer xor.
|
|
|
|
%x = xor %y, %z : tensor<4x?xi8>
|
|
|
|
```
|
|
|
|
|
|
|
|
The `xor` operation takes two operands and returns one result, each of these is
|
|
|
|
required to be the same type. This type may be an integer scalar type, a vector
|
|
|
|
whose element type is integer, or a tensor of integers. It has no standard
|
|
|
|
attributes.
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
## Dialects
|
2018-12-08 02:16:49 +08:00
|
|
|
|
2018-12-15 01:31:17 +08:00
|
|
|
MLIR supports multiple dialects containing a set of operations and types defined
|
|
|
|
together, potentially outside of the main tree. Dialects are produced and
|
|
|
|
consumed by certain passes. MLIR can be converted between different dialects by
|
|
|
|
a conversion pass.
|
2018-12-08 02:16:49 +08:00
|
|
|
|
2018-12-15 01:31:17 +08:00
|
|
|
Currently, MLIR supports the following dialects:
|
2018-12-08 02:16:49 +08:00
|
|
|
|
2018-12-15 01:31:17 +08:00
|
|
|
* [Standard dialect](#standard-operations)
|
Cleanup SuperVectorization dialect printing and parsing.
On the read side,
```
%3 = vector_transfer_read %arg0, %i2, %i1, %i0 {permutation_map: (d0, d1, d2)->(d2, d0)} : (memref<?x?x?xf32>, index, index, index) -> vector<32x256xf32>
```
becomes:
```
%3 = vector_transfer_read %arg0[%i2, %i1, %i0] {permutation_map: (d0, d1, d2)->(d2, d0)} : memref<?x?x?xf32>, vector<32x256xf32>
```
On the write side,
```
vector_transfer_write %0, %arg0, %c3, %c3 {permutation_map: (d0, d1)->(d0)} : vector<128xf32>, memref<?x?xf32>, index, index
```
becomes
```
vector_transfer_write %0, %arg0[%c3, %c3] {permutation_map: (d0, d1)->(d0)} : vector<128xf32>, memref<?x?xf32>
```
Documentation will be cleaned up in a followup commit that also extracts a proper .md from the top of the file comments.
PiperOrigin-RevId: 241021879
2019-03-30 02:48:20 +08:00
|
|
|
* [Vector dialect](Dialects/Vector.md)
|
2018-12-15 01:31:17 +08:00
|
|
|
* [TensorFlow dialect](#tensorflow-operations)
|
2018-12-08 02:16:49 +08:00
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
### TensorFlow operations
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
MLIR operations can represent arbitrary TensorFlow operations with a reversible
|
|
|
|
mapping. Switch and merge nodes are represented with the MLIR control flow
|
|
|
|
graph. TensorFlow dataflow operations are mapped over to MLIR operations whose
|
|
|
|
name gets a "tf." prefix.
|
|
|
|
|
|
|
|
The normal dtypes supported by TensorFlow are mapped onto a Tensor type with an
|
|
|
|
unknown rank. The resource and variant dtypes are mapped onto our resource and
|
|
|
|
variant type specifically (TODO: Specify this). Attributes get mapped over
|
|
|
|
directly, with type attributes represented as strings.
|
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
2018-11-14 23:52:12 +08:00
|
|
|
```mlir {.mlir}
|
2018-10-25 00:47:36 +08:00
|
|
|
// TensorFlow Add operation.
|
|
|
|
%a = "tf.Add"(%b, %c)
|
|
|
|
: (tensor<*xf32>,tensor<*xf32>) -> tensor<*xf32>
|
|
|
|
|
|
|
|
// TensorFlow Add operation with partially inferred shapes.
|
|
|
|
%d = "tf.Add"(%e, %f)
|
|
|
|
: (tensor<?x42x?xf32>,tensor<?x42x?xf32>) -> tensor<?x42x?xf32>
|
|
|
|
|
|
|
|
// TensorFlow Conv2d operation.
|
|
|
|
%y = "tf.Conv2d"(%input, %filter)
|
|
|
|
{strides: [1,1,2,1], padding: "SAME", dilations: [2,1,1,1]}
|
|
|
|
: (tensor<*xf32>, tensor<*xf32>) -> tensor<*xf32>
|
|
|
|
```
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
### Target specific operations
|
2018-10-25 00:47:36 +08:00
|
|
|
|
|
|
|
We expect to expose many target-specific (such as TPU-specific) operations
|
|
|
|
directly through to MLIR.
|
|
|
|
|
2019-04-06 09:34:49 +08:00
|
|
|
In addition to the TPU backend, some targets go through LLVM. LLVM has a rich
|
2018-10-25 00:47:36 +08:00
|
|
|
set of intrinsics for certain target-independent operations (e.g. addition with
|
|
|
|
overflow check) as well as providing access to target-specific operations for
|
2019-03-30 04:15:06 +08:00
|
|
|
the targets it supports (e.g. vector permutation operations). LLVM intrinsics
|
2018-10-25 00:47:36 +08:00
|
|
|
start with an "llvm." name.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
2018-11-14 23:52:12 +08:00
|
|
|
```mlir {.mlir}
|
2018-10-25 00:47:36 +08:00
|
|
|
// LLVM: %x = call {i16, i1} @llvm.sadd.with.overflow.i16(i16 %a, i16 %b)
|
2019-03-29 05:58:52 +08:00
|
|
|
%x:2 = "llvm.sadd.with.overflow.i16"(%a, %b) : (i16, i16) -> (i16, i1)
|
2018-10-25 00:47:36 +08:00
|
|
|
```
|
|
|
|
|
|
|
|
These operations only work when targeting LLVM as a backend (e.g. for CPUs and
|
|
|
|
GPUs), and are required to align with the LLVM definition of these intrinsics.
|
2019-01-08 01:59:55 +08:00
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
### Dialect specific types
|
2019-01-08 01:59:55 +08:00
|
|
|
|
|
|
|
Similarly to operations, dialects may define custom extensions to the type
|
|
|
|
system. These extensions fit within the same type system as described in the
|
|
|
|
[type system overview](#type-system).
|
|
|
|
|
|
|
|
``` {.ebnf}
|
|
|
|
dialect-type ::= '!' dialect-namespace '<' '"' type-specific-data '"' '>'
|
2019-04-06 10:36:42 +08:00
|
|
|
dialect-type ::= '!' alias-name pretty-dialect-type-body?
|
|
|
|
|
|
|
|
pretty-dialect-type-body ::= '<' pretty-dialect-type-contents+ '>'
|
|
|
|
pretty-dialect-type-contents ::= pretty-dialect-type-body
|
2019-04-15 04:41:09 +08:00
|
|
|
| '(' pretty-dialect-type-contents+ ')'
|
|
|
|
| '[' pretty-dialect-type-contents+ ']'
|
|
|
|
| '{' pretty-dialect-type-contents+ '}'
|
|
|
|
| '[^[<({>\])}\0]+'
|
2019-04-06 10:36:42 +08:00
|
|
|
|
2019-01-08 01:59:55 +08:00
|
|
|
```
|
|
|
|
|
2019-04-06 10:36:42 +08:00
|
|
|
Dialect types can be specified in a verbose form, e.g. like this:
|
2019-01-08 01:59:55 +08:00
|
|
|
|
|
|
|
```mlir {.mlir}
|
|
|
|
// LLVM type that wraps around llvm IR types.
|
|
|
|
!llvm<"i32*">
|
|
|
|
|
|
|
|
// Tensor flow string type.
|
2019-04-06 14:56:49 +08:00
|
|
|
!tf.string
|
2019-04-06 10:36:42 +08:00
|
|
|
|
|
|
|
// Complex type
|
|
|
|
!foo<"something<abcd>">
|
|
|
|
|
|
|
|
// Even more complex type
|
|
|
|
!foo<"something<a%%123^^^>>>">
|
|
|
|
```
|
|
|
|
|
|
|
|
Dialect types that are simple enough can use the pretty format, which is a
|
|
|
|
lighter weight syntax that is equivalent to the above forms:
|
|
|
|
|
|
|
|
```mlir {.mlir}
|
|
|
|
// Tensor flow string type.
|
|
|
|
!tf.string
|
|
|
|
|
|
|
|
// Complex type
|
|
|
|
!foo.something<abcd>
|
2019-01-08 01:59:55 +08:00
|
|
|
```
|
|
|
|
|
2019-04-06 10:36:42 +08:00
|
|
|
Sufficiently complex dialect types are required to use the verbose form for
|
|
|
|
generality. For example, the more complex type shown above wouldn't be valid in
|
|
|
|
the lighter syntax: `!foo.something<a%%123^^^>>>` because it contains characters
|
|
|
|
that are not allowed in the lighter syntax, as well as unbalanced `<>`
|
|
|
|
characters.
|
|
|
|
|
2019-04-05 23:19:42 +08:00
|
|
|
### TensorFlow types
|
2019-01-08 01:59:55 +08:00
|
|
|
|
|
|
|
The TensorFlow dialect in MLIR defines several extended types:
|
|
|
|
|
|
|
|
``` {.ebnf}
|
|
|
|
// TensorFlow specific types (TODO: the rest ref data types)
|
|
|
|
type-specific-data ::= `control` | `resource` | `variant` | `string`
|
|
|
|
`complex64` | `complex128` | `f32ref`
|
|
|
|
```
|
|
|
|
|
|
|
|
`control` is used in TensorFlow graphs to represent
|
|
|
|
[control dependence edges](https://docs.google.com/document/d/1Iey7MfrAlBWd0nrHNdnVKvIKRoo8XHsWG5g5pi1iDV4/edit?ts=5b5a0a9f#heading=h.1dv5wuya469j).
|