Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Bugfix][TOPI] conv2d_transpose bugfix #3138

Merged
merged 2 commits into from May 8, 2019
Merged

[Bugfix][TOPI] conv2d_transpose bugfix #3138

merged 2 commits into from May 8, 2019

Conversation

Laurawly
Copy link
Contributor

@Laurawly Laurawly commented May 6, 2019

Deconv casts blockIdx.x blockIdx.y arguments not found error in some cases, bug fixed, corresponding tests added. @merrymercy

@Laurawly Laurawly requested a review from merrymercy May 6, 2019 21:15
@tqchen tqchen merged commit 472c314 into apache:master May 8, 2019
@@ -193,13 +192,13 @@ def _callback(op):
rco, rcm, rci = cfg['tile_rc'].apply(s, OL, rc)
s[OL].reorder(rco, rcm, ry, rx, rci, n, f, y, x)

s[AA].compute_at(s[OL], rcm)
s[WW].compute_at(s[OL], rcm)
s[AA].compute_at(s[OL], rx)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Laurawly Why cannot we compute at rcm?

Copy link
Contributor Author

@Laurawly Laurawly May 12, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We get blockidx.x not found error in certain cases such as the test I added in this pr

wweic pushed a commit to wweic/tvm that referenced this pull request May 13, 2019
* deconv tests

* deconv bug fixed for certain cases tests added
wweic pushed a commit to neo-ai/tvm that referenced this pull request May 13, 2019
* deconv tests

* deconv bug fixed for certain cases tests added
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants