Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
N
ngraph
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ngraph
Commits
1d5d2024
Commit
1d5d2024
authored
Jul 26, 2019
by
Nagy Mostafa
Committed by
Scott Cyphers
Jul 26, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[MLIR] Deallocate all temp tensors before return (#3289)
* Deallocate all temp tensors before return * style-apply
parent
c0edf94d
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
3 deletions
+16
-3
lowerer.cpp
src/contrib/mlir/lowerer.cpp
+16
-3
No files found.
src/contrib/mlir/lowerer.cpp
View file @
1d5d2024
...
...
@@ -122,6 +122,9 @@ namespace
ArrayRef
<
Type
>
output
,
PatternRewriter
&
rewriter
);
/// Inserts dealloc Ops for each temporary allocated by AllocOp
void
insertDeallocs
(
PatternRewriter
&
rewriter
);
private
:
/// Collect a set of patterns to convert from the nGraph dialect to Affine dialect.
void
populateNGraphToAffineConversionPatterns
(
OwningRewritePatternList
&
patterns
);
...
...
@@ -134,8 +137,9 @@ namespace
private
:
NGraphTypeConverter
typeConverter
;
// Value holding mem manager passed pointer
SmallVector
<
Value
*
,
4
>
memMgrDefs
;
SmallVector
<
Value
*
,
4
>
m_memMgrDefs
;
// List of temporary memrefs to deallocate at end of function
SmallVector
<
Value
*
,
4
>
m_memRefsToDealloc
;
// list of results values to add to func signature
SmallVector
<
Value
*
,
4
>
loweredOutputValues
;
ngmlir
::
MLIRCompiler
&
compiler
;
...
...
@@ -167,7 +171,6 @@ namespace
}
processFakeInstrs
();
insertNoAliasArgAttrs
();
}
...
...
@@ -261,6 +264,7 @@ namespace
NGRAPH_CHECK
(
memRefType
.
hasStaticShape
(),
"Dynamic shapes are not supported"
);
Value
*
alloc
=
rewriter
.
create
<
mlir
::
AllocOp
>
(
rewriter
.
getUnknownLoc
(),
memRefType
);
m_memRefsToDealloc
.
push_back
(
alloc
);
// TODO:
// Enable dynamic memref allocation via call-back to nGraph allocator
...
...
@@ -336,6 +340,14 @@ namespace
}
}
void
DialectLoweringPass
::
insertDeallocs
(
PatternRewriter
&
rewriter
)
{
for
(
auto
value
:
m_memRefsToDealloc
)
{
rewriter
.
create
<
DeallocOp
>
(
rewriter
.
getUnknownLoc
(),
value
);
}
}
mlir
::
Function
*
DialectLoweringPass
::
getCallDecl
(
StringRef
name
,
ArrayRef
<
Type
>
args
,
ArrayRef
<
Type
>
output
,
...
...
@@ -765,6 +777,7 @@ namespace
REWRITER
(
NGReturnOp
)
{
m_pass
.
insertDeallocs
(
rewriter
);
rewriter
.
replaceOpWithNewOp
<
ReturnOp
>
(
op
);
return
matchSuccess
();
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment