Loading [MathJax]/extensions/tex2jax.js
CIRCT
21.0.0git
Toggle main menu visibility
Main Page
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
Variables
_
a
b
c
d
e
f
g
i
k
l
m
n
o
r
s
t
u
v
w
Typedefs
a
b
c
d
e
f
g
h
i
m
o
p
r
s
t
u
w
Enumerations
Enumerator
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
:
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
~
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
z
~
Variables
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Typedefs
a
b
c
d
e
f
g
i
k
l
m
n
o
p
r
s
t
u
v
Enumerations
Enumerator
a
b
c
d
f
i
m
n
o
p
r
s
t
u
v
w
x
z
Related Symbols
Files
File List
File Members
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
y
z
Functions
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
y
z
Variables
c
e
g
i
l
m
n
p
r
s
t
w
Typedefs
b
c
d
e
f
h
i
j
l
m
n
o
p
r
s
u
v
Enumerations
Enumerator
a
c
d
f
h
i
n
o
r
Macros
a
c
d
e
g
h
i
r
s
t
v
x
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
Loading...
Searching...
No Matches
lib
Bindings
Python
dialects
esi.py
Go to the documentation of this file.
1
# Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
2
# See https://llvm.org/LICENSE.txt for license information.
3
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
4
5
from
__future__
import
annotations
6
7
from
.
import
esi
8
from
..
import
ir
9
from
..
import
support
10
from
..
_mlir_libs._circt._esi
import
*
11
from
..dialects._ods_common
import
_cext
as
_ods_cext
12
from
._esi_ops_gen
import
*
13
from
._esi_ops_gen
import
_Dialect
14
from
typing
import
Dict, List, Optional, Sequence, Type
15
16
17
class
ChannelSignaling
:
18
ValidReady = 0
19
FIFO = 1
20
21
22
@_ods_cext.register_operation(_Dialect, replace=True)
17
class
ChannelSignaling
:
…
23
class
RequestConnectionOp
(
RequestConnectionOp
):
24
25
@property
26
def
clientNamePath
(self) -> List[str]:
27
return
[
28
ir.StringAttr(x).value
29
for
x
in
ir.ArrayAttr(self.attributes[
"clientNamePath"
])
30
]
31
32
33
@_ods_cext.register_operation(_Dialect, replace=True)
26
def
clientNamePath
(self) -> List[str]:
…
23
class
RequestConnectionOp
(
RequestConnectionOp
):
…
34
class
RandomAccessMemoryDeclOp
(
RandomAccessMemoryDeclOp
):
35
36
@property
37
def
innerType
(self):
38
return
ir.TypeAttr(self.attributes[
"innerType"
])
39
40
41
@_ods_cext.register_operation(_Dialect, replace=True)
37
def
innerType
(self):
…
34
class
RandomAccessMemoryDeclOp
(
RandomAccessMemoryDeclOp
):
…
42
class
ESIPureModuleOp
(
ESIPureModuleOp
):
43
44
def
add_entry_block
(self):
45
if
len(self.body.blocks) > 0:
46
raise
IndexError(
'The module already has an entry block'
)
47
self.body.blocks.append()
48
return
self.body.blocks[0]
44
def
add_entry_block
(self):
…
42
class
ESIPureModuleOp
(
ESIPureModuleOp
):
…
esi.ChannelSignaling
Definition
esi.py:17
esi.ESIPureModuleOp
Definition
esi.py:42
esi.ESIPureModuleOp.add_entry_block
add_entry_block(self)
Definition
esi.py:44
esi.RandomAccessMemoryDeclOp
Definition
esi.py:34
esi.RandomAccessMemoryDeclOp.innerType
innerType(self)
Definition
esi.py:37
esi.RequestConnectionOp
Definition
esi.py:23
esi.RequestConnectionOp.clientNamePath
List[str] clientNamePath(self)
Definition
esi.py:26
_esi
Generated on Thu Apr 17 2025 00:08:45 for CIRCT by
1.9.8