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
9fb26056
Commit
9fb26056
authored
Apr 05, 2018
by
Lianmin Zheng
Committed by
Tianqi Chen
Apr 04, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mix fix (#1079)
parent
aaf7ff04
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
python/tvm/build_module.py
+2
-2
python/tvm/contrib/cudnn.py
+4
-4
No files found.
python/tvm/build_module.py
View file @
9fb26056
...
...
@@ -180,7 +180,7 @@ def build_config(**kwargs):
Threshold of number of steps in the loop to be automatically unrolled.
This takes inner loop count into consideration.
auto_unroll_max_depth: int, default=
4
auto_unroll_max_depth: int, default=
8
The maximum nested level of loops that can be automatically unrolled.
unroll_explicit: bool, default=True
...
...
@@ -214,7 +214,7 @@ def build_config(**kwargs):
It it is bigger than one, the logic will do a split with factor equals the integer
and unroll the inner loop. This allows the buffer fetching won't contain condition.
add_lower_pass: list of tu
i
ple (phase, function(Stmt->Stmt)), default=None
add_lower_pass: list of tuple (phase, function(Stmt->Stmt)), default=None
phase contains an integer on which optimization pass we apply the pass.
Additional lowering passes to be applied before make_api.
...
...
python/tvm/contrib/cudnn.py
View file @
9fb26056
...
...
@@ -278,10 +278,10 @@ def conv2d_find_algo(tensor_format,
w_shape
[
1
]
.
value
,
w_shape
[
2
]
.
value
,
w_shape
[
3
]
.
value
,
y_shape
[
0
]
,
y_shape
[
1
]
,
y_shape
[
2
]
,
y_shape
[
3
]
)
int
(
y_shape
[
0
])
,
int
(
y_shape
[
1
])
,
int
(
y_shape
[
2
])
,
int
(
y_shape
[
3
])
)
def
conv2d_forward
(
x
,
...
...
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