Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tvm
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cld
ml
tvm
Commits
dac6b528
Commit
dac6b528
authored
8 years ago
by
tqchen
Browse files
Options
Downloads
Patches
Plain Diff
checkin stmt
parent
cf0fc361
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
include/tvm/base.h
+5
-0
5 additions, 0 deletions
include/tvm/base.h
include/tvm/codegen.h
+0
-39
0 additions, 39 deletions
include/tvm/codegen.h
include/tvm/stmt_node.h
+73
-0
73 additions, 0 deletions
include/tvm/stmt_node.h
with
78 additions
and
39 deletions
include/tvm/base.h
+
5
−
0
View file @
dac6b528
...
...
@@ -37,6 +37,7 @@ enum DataType : int {
* \note kOtherNodes could mean more than one node type.
*/
enum
NodeType
{
// expr nodes
kVarNode
,
kIntNode
,
kFloatNode
,
...
...
@@ -44,6 +45,10 @@ enum NodeType {
kBinaryOpNode
,
kReduceNode
,
kTensorReadNode
,
// stmt nodes
kStoreNode
,
kForRangeNode
,
kIfThenElseNode
,
kOtherNodes
};
...
...
This diff is collapsed.
Click to expand it.
include/tvm/codegen.h
deleted
100644 → 0
+
0
−
39
View file @
cf0fc361
/*!
* Copyright (c) 2016 by Contributors
* \file codegen.h
* \brief Common data structure for codegen
*/
#ifndef TVM_CODEGEN_H_
#define TVM_CODEGEN_H_
namespace
tvm
{
// incomplete spec.
struct
Assign
:
public
Node
{
Expr
src
;
Expr
offset
;
Var
ptr
;
};
struct
Assign
:
public
Node
{
Expr
src
;
Expr
offset
;
Var
ptr
;
};
struct
Loop
:
public
Node
{
Expr
init
;
Expr
cond
;
Stmt
body
;
};
struct
IfThenElse
:
public
Node
{
Expr
cond
;
Expr
then_
;
Stmt
else_
;
};
}
// namespace tvm
#endif // TVM_CODEGEN_H_
This diff is collapsed.
Click to expand it.
include/tvm/stmt_node.h
0 → 100644
+
73
−
0
View file @
dac6b528
/*!
* Copyright (c) 2016 by Contributors
* \file stmt.h
* \brief Common data structure for codegen
*/
#ifndef TVM_STMT_NODE_H_
#define TVM_STMT_NODE_H_
namespace
tvm
{
struct
StmtNode
:
public
Node
{
};
/*! \brief Store data into buffer */
struct
StoreNode
:
public
StmtNode
{
/*! \brief the variable representing the buffer */
Var
buffer
;
/*! \brief the buffer offset */
Expr
offset
;
/*! \brief The source expression*/
Expr
src
;
/*! \brief constructor */
StoreNode
()
{
node_type_
=
kStoreNode
;
}
void
VisitNodeRefFields
(
FNodeRefVisit
fvisit
)
override
{
fvisit
(
"buffer"
,
&
buffer
);
fvisit
(
"offset"
,
&
offset
);
fvisit
(
"src"
,
&
src
);
}
};
/*! \brief for loop in range */
struct
ForRangeNode
:
public
StmtNode
{
/*! \brief loop variable */
Var
loop_var
;
/*! \brief The loop range */
Range
range
;
/*! \brief body of the loop */
Stmt
body
;
/*! \brief constructor */
ForRangeNode
()
{
node_type_
=
kForRangeNode
;
}
void
VisitNodeRefFields
(
FNodeRefVisit
fvisit
)
override
{
fvisit
(
"loop_var"
,
&
loop_var
);
fvisit
(
"range"
,
&
range
);
fvisit
(
"body"
,
&
body
);
}
};
/*! \brief conditional expression */
struct
IfThenElseNode
:
public
StmtNode
{
/*! \brief The condition */
Expr
cond
;
/*! \brief The statement in then */
Stmt
then_body
;
/*! \brief The statement in else */
Stmt
else_body
;
/*! \brief constructor */
IfThenElseNode
()
{
node_type_
=
kIfThenElseNode
;
}
void
VisitNodeRefFields
(
FNodeRefVisit
fvisit
)
override
{
fvisit
(
"cond"
,
&
cond
);
fvisit
(
"then_body"
,
&
then_body
);
fvisit
(
"else_body"
,
&
else_body
);
}
};
}
// namespace tvm
#endif // TVM_CODEGEN_H_
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment