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
dd5722d3
Commit
dd5722d3
authored
Nov 10, 2018
by
Wuwei Lin
Committed by
Tianqi Chen
Nov 09, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix conv2d int8 schedule on CUDA (#2074)
parent
644a15c3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
21 deletions
+5
-21
topi/python/topi/cuda/conv2d_int8.py
+5
-21
No files found.
topi/python/topi/cuda/conv2d_int8.py
View file @
dd5722d3
...
...
@@ -138,10 +138,6 @@ _dp4a = dp4a('shared', 'shared', 'local')
def
schedule_conv2d_NCHWc_int8
(
cfg
,
s
,
output
):
"""Schedule conv2d int8 NCHWc template"""
workload
=
output
.
op
.
attrs
[
"workload"
]
stride
=
workload
[
3
]
conv
=
output
.
op
.
input_tensors
[
0
]
packed_data
,
packed_kernel
=
conv
.
op
.
input_tensors
...
...
@@ -166,11 +162,6 @@ def schedule_conv2d_NCHWc_int8(cfg, s, output):
if
pad_data
!=
packed_data
:
s
[
pad_data
]
.
compute_inline
()
if
isinstance
(
stride
,
int
):
stride_h
=
stride_w
=
stride
else
:
stride_h
,
stride_w
=
stride
# create cache stage
AA
=
s
.
cache_read
(
pad_data
,
'shared'
,
[
conv
])
WW
=
s
.
cache_read
(
packed_kernel
,
'shared'
,
[
conv
])
...
...
@@ -250,18 +241,11 @@ def schedule_conv2d_NCHWc_int8(cfg, s, output):
# cooperative fetching
for
load
in
[
AA
,
WW
]:
if
load
==
AA
:
n
,
f
,
y
,
x
,
c
=
s
[
load
]
.
op
.
axis
if
pad_data
==
packed_data
and
stride_h
==
1
and
stride_w
==
1
:
s
[
load
]
.
vectorize
(
c
)
fused
=
s
[
load
]
.
fuse
(
n
,
f
,
y
,
x
)
else
:
c
,
_
=
s
[
load
]
.
split
(
c
,
factor
=
4
)
fused
=
s
[
load
]
.
fuse
(
n
,
f
,
y
,
x
,
c
)
else
:
n
,
f
,
y
,
x
,
oc_chunk
,
c
=
s
[
load
]
.
op
.
axis
fused
=
s
[
load
]
.
fuse
(
n
,
f
,
y
,
x
,
oc_chunk
)
s
[
load
]
.
vectorize
(
c
)
c
=
s
[
load
]
.
op
.
axis
[
-
1
]
c_outer
,
c
=
s
[
load
]
.
split
(
c
,
factor
=
4
)
s
[
load
]
.
vectorize
(
c
)
fused
=
s
[
load
]
.
op
.
axis
[:
-
1
]
+
[
c_outer
]
fused
=
s
[
load
]
.
fuse
(
*
fused
)
fused
,
tx
=
s
[
load
]
.
split
(
fused
,
factor
=
n_tx
)
fused
,
ty
=
s
[
load
]
.
split
(
fused
,
factor
=
n_ty
)
...
...
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