Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
T
tic
Overview
Overview
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wenyuanbo
tic
Commits
8c31d0dd
Unverified
Commit
8c31d0dd
authored
Apr 12, 2020
by
Zhi
Committed by
GitHub
Apr 12, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove PrimExpr from String (#5311)
parent
92d0ec14
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
28 additions
and
32 deletions
+28
-32
include/tvm/ir/expr.h
+0
-6
src/ir/expr.cc
+0
-3
src/target/target.cc
+1
-1
src/tir/ir/stmt.cc
+24
-19
topi/include/topi/contrib/cublas.h
+2
-2
topi/include/topi/contrib/rocblas.h
+1
-1
No files found.
include/tvm/ir/expr.h
View file @
8c31d0dd
...
...
@@ -108,12 +108,6 @@ class PrimExpr : public BaseExpr {
*/
TVM_DLL
PrimExpr
(
float
value
);
// NOLINT(*)
/*!
* \brief construct from runtime String.
* \param value The value to be constructed.
*/
TVM_DLL
PrimExpr
(
runtime
::
String
value
);
// NOLINT(*)
/*! \return the data type of this expression. */
DataType
dtype
()
const
{
return
static_cast
<
const
PrimExprNode
*>
(
get
())
->
dtype
;
...
...
src/ir/expr.cc
View file @
8c31d0dd
...
...
@@ -40,9 +40,6 @@ PrimExpr::PrimExpr(int32_t value)
PrimExpr
::
PrimExpr
(
float
value
)
:
PrimExpr
(
FloatImm
(
DataType
::
Float
(
32
),
value
))
{}
PrimExpr
::
PrimExpr
(
runtime
::
String
value
)
:
PrimExpr
(
tir
::
StringImmNode
::
make
(
value
))
{}
PrimExpr
PrimExpr
::
FromObject_
(
ObjectRef
ref
)
{
using
runtime
::
ObjectTypeChecker
;
if
(
auto
*
ptr
=
ref
.
as
<
tir
::
IterVarNode
>
())
{
...
...
src/target/target.cc
View file @
8c31d0dd
...
...
@@ -137,7 +137,7 @@ Target CreateTarget(const std::string& target_name,
}
else
if
(
target_name
==
"hybrid"
)
{
t
->
device_type
=
kDLCPU
;
}
else
if
(
target_name
==
"hexagon"
)
{
t
->
keys_array
.
push_back
(
runtime
::
String
(
"hexagon"
)
);
t
->
keys_array
.
push_back
(
"hexagon"
);
t
->
device_type
=
kDLHexagon
;
}
else
{
LOG
(
ERROR
)
<<
"Unknown target name "
<<
target_name
;
...
...
src/tir/ir/stmt.cc
View file @
8c31d0dd
...
...
@@ -58,7 +58,6 @@ Stmt AttrStmtNode::make(ObjectRef node,
TVM_REGISTER_GLOBAL
(
"tir.AttrStmt"
)
.
set_body_typed
(
AttrStmtNode
::
make
);
Stmt
AssertStmtNode
::
make
(
PrimExpr
condition
,
PrimExpr
message
,
Stmt
body
)
{
CHECK
(
condition
.
defined
());
CHECK
(
message
.
dtype
()
==
DataType
::
Int
(
32
)
||
...
...
@@ -74,8 +73,14 @@ Stmt AssertStmtNode::make(PrimExpr condition, PrimExpr message, Stmt body) {
}
TVM_REGISTER_GLOBAL
(
"tir.AssertStmt"
)
.
set_body_typed
(
AssertStmtNode
::
make
);
.
set_body_typed
([](
PrimExpr
condition
,
ObjectRef
message
,
Stmt
body
)
{
if
(
const
auto
*
str
=
message
.
as
<
StringObj
>
())
{
auto
msg
=
StringImmNode
::
make
(
str
->
data
);
return
AssertStmtNode
::
make
(
condition
,
msg
,
body
);
}
else
{
return
AssertStmtNode
::
make
(
condition
,
Downcast
<
PrimExpr
>
(
message
),
body
);
}
});
Stmt
ProducerConsumerNode
::
make
(
FunctionRef
func
,
bool
is_producer
,
Stmt
body
)
{
CHECK
(
body
.
defined
());
...
...
@@ -92,11 +97,11 @@ TVM_REGISTER_GLOBAL("tir.ProducerConsumer")
Stmt
ForNode
::
make
(
Var
loop_var
,
PrimExpr
min
,
PrimExpr
extent
,
ForType
for_type
,
DeviceAPI
device_api
,
Stmt
body
)
{
PrimExpr
min
,
PrimExpr
extent
,
ForType
for_type
,
DeviceAPI
device_api
,
Stmt
body
)
{
CHECK
(
min
.
defined
());
CHECK
(
extent
.
defined
());
CHECK
(
min
.
dtype
().
is_scalar
());
...
...
@@ -119,11 +124,11 @@ TVM_REGISTER_GLOBAL("tir.For")
Var
loop_var
,
PrimExpr
min
,
PrimExpr
extent
,
int
for_type
,
int
device_api
,
Stmt
body
)
{
return
ForNode
::
make
(
loop_var
,
min
,
extent
,
static_cast
<
ForType
>
(
for_type
),
static_cast
<
DeviceAPI
>
(
device_api
),
body
);
min
,
extent
,
static_cast
<
ForType
>
(
for_type
),
static_cast
<
DeviceAPI
>
(
device_api
),
body
);
});
...
...
@@ -176,12 +181,12 @@ TVM_REGISTER_GLOBAL("tir.Provide")
Stmt
AllocateNode
::
make
(
Var
buffer_var
,
DataType
dtype
,
Array
<
PrimExpr
>
extents
,
PrimExpr
condition
,
Stmt
body
,
PrimExpr
new_expr
,
std
::
string
free_function
)
{
DataType
dtype
,
Array
<
PrimExpr
>
extents
,
PrimExpr
condition
,
Stmt
body
,
PrimExpr
new_expr
,
std
::
string
free_function
)
{
for
(
size_t
i
=
0
;
i
<
extents
.
size
();
++
i
)
{
CHECK
(
extents
[
i
].
defined
());
CHECK
(
extents
[
i
].
dtype
().
is_scalar
());
...
...
topi/include/topi/contrib/cublas.h
View file @
8c31d0dd
...
...
@@ -53,7 +53,7 @@ inline Tensor cublas_matmul(const Tensor& lhs,
{
{
n
,
m
}
},
{
lhs
->
dtype
},
{
lhs
,
rhs
},
[
&
](
Array
<
Buffer
>
ins
,
Array
<
Buffer
>
outs
)
{
return
call_packed
({
runtime
::
String
(
"tvm.contrib.cublas.matmul"
),
StringImmNode
::
make
(
"tvm.contrib.cublas.matmul"
),
pack_buffer
(
ins
[
0
]),
pack_buffer
(
ins
[
1
]),
pack_buffer
(
outs
[
0
]),
...
...
@@ -85,7 +85,7 @@ inline Tensor cublas_batch_matmul(const Tensor& lhs,
{
{
b
,
n
,
m
}
},
{
lhs
->
dtype
},
{
lhs
,
rhs
},
[
&
](
Array
<
Buffer
>
ins
,
Array
<
Buffer
>
outs
)
{
return
call_packed
({
runtime
::
String
(
"tvm.contrib.cublas.batch_matmul"
),
StringImmNode
::
make
(
"tvm.contrib.cublas.batch_matmul"
),
pack_buffer
(
ins
[
0
]),
pack_buffer
(
ins
[
1
]),
pack_buffer
(
outs
[
0
]),
...
...
topi/include/topi/contrib/rocblas.h
View file @
8c31d0dd
...
...
@@ -52,7 +52,7 @@ inline Tensor rocblas_matmul(const Tensor& lhs,
{
{
n
,
m
}
},
{
lhs
->
dtype
},
{
lhs
,
rhs
},
[
&
](
Array
<
Buffer
>
ins
,
Array
<
Buffer
>
outs
)
{
return
call_packed
({
runtime
::
String
(
"tvm.contrib.rocblas.matmul"
),
StringImmNode
::
make
(
"tvm.contrib.rocblas.matmul"
),
pack_buffer
(
ins
[
0
]),
pack_buffer
(
ins
[
1
]),
pack_buffer
(
outs
[
0
]),
...
...
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