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
5ea4072c
Commit
5ea4072c
authored
Sep 04, 2017
by
Tianqi Chen
Committed by
GitHub
Sep 04, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PYTHON] Allow general types (#425)
parent
df3c996b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
3 deletions
+21
-3
python/tvm/_ffi/runtime_ctypes.py
+0
-3
tests/python/unittest/test_codegen_llvm.py
+21
-0
No files found.
python/tvm/_ffi/runtime_ctypes.py
View file @
5ea4072c
...
...
@@ -65,10 +65,7 @@ class TVMType(ctypes.Structure):
head
=
""
else
:
raise
ValueError
(
"Donot know how to handle type
%
s"
%
type_str
)
bits
=
int
(
head
)
if
head
else
bits
if
(
bits
&
(
bits
-
1
))
!=
0
or
bits
<
8
:
raise
ValueError
(
"Donot know how to handle type
%
s"
%
type_str
)
self
.
bits
=
bits
...
...
tests/python/unittest/test_codegen_llvm.py
View file @
5ea4072c
...
...
@@ -231,6 +231,7 @@ def test_multiple_func():
check_llvm
()
def
test_llvm_select
():
def
check_llvm
(
n
,
offset
):
if
not
tvm
.
module
.
enabled
(
"llvm"
):
...
...
@@ -251,7 +252,27 @@ def test_llvm_select():
check_llvm
(
64
,
8
)
def
test_llvm_bool
():
def
check_llvm
(
n
):
if
not
tvm
.
module
.
enabled
(
"llvm"
):
return
A
=
tvm
.
placeholder
((
n
,
),
name
=
'A'
,
dtype
=
"int32"
)
C
=
tvm
.
compute
((
n
,),
lambda
i
:
A
[
i
]
.
equal
(
1
)
.
astype
(
"float"
),
name
=
'C'
)
s
=
tvm
.
create_schedule
(
C
.
op
)
# build and invoke the kernel.
f
=
tvm
.
build
(
s
,
[
A
,
C
],
"llvm"
)
ctx
=
tvm
.
cpu
(
0
)
# launch the kernel.
a
=
tvm
.
nd
.
array
(
np
.
random
.
randint
(
0
,
2
,
size
=
(
n
,))
.
astype
(
A
.
dtype
),
ctx
)
c
=
tvm
.
nd
.
empty
((
n
,),
C
.
dtype
,
ctx
)
f
(
a
,
c
)
c_np
=
a
.
asnumpy
()
==
1
np
.
testing
.
assert_allclose
(
c
.
asnumpy
(),
c_np
)
check_llvm
(
64
)
if
__name__
==
"__main__"
:
test_llvm_bool
()
test_llvm_persist_parallel
()
test_llvm_select
()
test_llvm_vadd_pipeline
()
...
...
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