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
f01cc0e6
Commit
f01cc0e6
authored
Oct 16, 2018
by
Sergei Grechanik
Committed by
Tianqi Chen
Oct 16, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[TVM] Eagerer const folding for logic ops (#1907)
parent
b4946e77
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
52 additions
and
8 deletions
+52
-8
src/lang/ir_operator.cc
+14
-8
tests/python/unittest/test_lang_operator.py
+38
-0
No files found.
src/lang/ir_operator.cc
View file @
f01cc0e6
...
...
@@ -310,20 +310,26 @@ Expr operator!=(Expr a, Expr b) {
Expr
operator
&&
(
Expr
a
,
Expr
b
)
{
using
ir
::
UIntImm
;
const
UIntImm
*
pa
=
a
.
as
<
UIntImm
>
();
const
UIntImm
*
pb
=
b
.
as
<
UIntImm
>
();
if
(
pa
&&
pb
)
{
return
UIntImm
::
make
(
UInt
(
1
),
pa
->
value
&&
pb
->
value
);
if
(
a
.
type
().
is_bool
()
&&
b
.
type
().
is_bool
())
{
const
UIntImm
*
pa
=
a
.
as
<
UIntImm
>
();
const
UIntImm
*
pb
=
b
.
as
<
UIntImm
>
();
if
(
pa
&&
pa
->
value
)
return
b
;
if
(
pa
&&
!
pa
->
value
)
return
a
;
if
(
pb
&&
pb
->
value
)
return
a
;
if
(
pb
&&
!
pb
->
value
)
return
b
;
}
return
ir
::
And
::
make
(
a
,
b
);
}
Expr
operator
||
(
Expr
a
,
Expr
b
)
{
using
ir
::
UIntImm
;
const
UIntImm
*
pa
=
a
.
as
<
UIntImm
>
();
const
UIntImm
*
pb
=
b
.
as
<
UIntImm
>
();
if
(
pa
&&
pb
)
{
return
UIntImm
::
make
(
UInt
(
1
),
pa
->
value
||
pb
->
value
);
if
(
a
.
type
().
is_bool
()
&&
b
.
type
().
is_bool
())
{
const
UIntImm
*
pa
=
a
.
as
<
UIntImm
>
();
const
UIntImm
*
pb
=
b
.
as
<
UIntImm
>
();
if
(
pa
&&
pa
->
value
)
return
a
;
if
(
pa
&&
!
pa
->
value
)
return
b
;
if
(
pb
&&
pb
->
value
)
return
b
;
if
(
pb
&&
!
pb
->
value
)
return
a
;
}
return
ir
::
Or
::
make
(
a
,
b
);
}
...
...
tests/python/unittest/test_lang_operator.py
View file @
f01cc0e6
...
...
@@ -30,6 +30,44 @@ def test_const_fold2():
assert
(
1
*
x
)
.
same_as
(
x
)
assert
isinstance
((
1
/
x
),
tvm
.
expr
.
Div
)
def
test_const_fold3
():
def
check_throws
(
f
):
try
:
f
()
except
tvm
.
TVMError
:
pass
else
:
raise
AssertionError
(
"Should have raised an exception but didn't."
)
# Test that using ints with logic operations is forbidden
x
=
tvm
.
var
(
"x"
)
for
val
in
[
0
,
1
]:
for
func
in
[
tvm
.
all
,
tvm
.
any
]:
check_throws
(
lambda
:
func
(
tvm
.
const
(
val
,
'uint1'
),
x
))
check_throws
(
lambda
:
func
(
x
,
tvm
.
const
(
val
,
'uint1'
)))
# Test const folding when both arguments are const
for
tvm_func
,
py_func
in
[(
tvm
.
all
,
lambda
a
,
b
:
a
and
b
),
(
tvm
.
any
,
lambda
a
,
b
:
a
or
b
)]:
for
v1
in
[
0
,
1
]:
for
v2
in
[
0
,
1
]:
assert
tvm
.
ir_pass
.
Equal
(
tvm_func
(
tvm
.
const
(
v1
,
'uint1'
),
tvm
.
const
(
v2
,
'uint1'
)),
tvm
.
const
(
py_func
(
v1
,
v2
),
'uint1'
))
x
=
tvm
.
var
(
"x"
,
'uint1'
)
true
=
tvm
.
const
(
1
,
'uint1'
)
false
=
tvm
.
const
(
0
,
'uint1'
)
assert
tvm
.
all
(
x
,
true
)
.
same_as
(
x
)
assert
tvm
.
all
(
true
,
x
)
.
same_as
(
x
)
assert
tvm
.
any
(
x
,
false
)
.
same_as
(
x
)
assert
tvm
.
any
(
false
,
x
)
.
same_as
(
x
)
assert
tvm
.
all
(
x
,
false
)
.
same_as
(
false
)
assert
tvm
.
all
(
false
,
x
)
.
same_as
(
false
)
assert
tvm
.
any
(
x
,
true
)
.
same_as
(
true
)
assert
tvm
.
any
(
true
,
x
)
.
same_as
(
true
)
if
__name__
==
"__main__"
:
test_const_fold
()
test_const_fold2
()
test_const_fold3
()
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