-
Notifications
You must be signed in to change notification settings - Fork 236
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
workSpaceSize check assertion fails in ConvolutionBackwardWeights() - DEBUG builds only #72
Comments
Explanation:
driver command to reproduce:
I'll provide a fix soon. |
@atamazov At least the patch now avoids assertion failure, but an application now goes into infinite loop of compiling MIOpen conv kernels(by glimpsing MIOpen logs, it looks it infinitely try to search conv kernel) |
@syoyo Theoretically, this could be not an infinite loop but auto-tuning (exhaustive search) process. Please check if autotuning is enabled in the environment. Anyway, I am unable to reproduce the "loop" problem with this config ( |
Ah, I meant "loop" occurs when I run tacotron app, not Currently I'm running a learning task for #70 regression. I'll attach log of #72 loop issue after that(it may take half or one day) |
@syoyo I highly recommend opening another issue for the loop problem. Let's keep this issue dedicated to workspace size check assertion. Thanks. |
Note that the issue only occurs with Debug builds of MIOpen (i.e. those which have assertions enabled). |
Fix has been included in 1.7.1: a478ac8 |
System
master
branch + Debug buildI have encountered assertion failure when trying to run keithito's tacotron.
https://github.com/keithito/tacotron
How to reproduce
Download LJ-Speech data and setup as described in Tacotron's README.
Set
MIOPEN_ENABLE_LOGGING=1
andMIOPEN_LOG_LEVEL=6
Then, run train.py
Full log: issue_72_full_log.txt
workSpaceSizeDirect
is 4x larger(due to sizeof(float)?) thanworkSpaceSize
.I have modified MIOpen source code to print the value of
BackwardWeightsGetWorkSpaceSizeDirect
The text was updated successfully, but these errors were encountered: