-
Notifications
You must be signed in to change notification settings - Fork 89
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
Peephole LSTM Error #3768
base: develop
Are you sure you want to change the base?
Peephole LSTM Error #3768
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## develop #3768 +/- ##
===========================================
- Coverage 92.29% 92.29% -0.01%
===========================================
Files 519 519
Lines 22217 22219 +2
===========================================
+ Hits 20505 20506 +1
- Misses 1712 1713 +1 ☔ View full report in Codecov by Sentry. |
Check results before merge 🔆 |
🔴bert_large_uncased_fp16: FAILED: MIGraphX is not within tolerance - check verbose output |
This fix works to compile the model and run perf, but there is still an issue with the .mxr files once compiled: FP32:
FP16:
|
Changed the PR to skip const prop over undefined instructions instead. |
The peephole is causing this error in line 1095
auto spph = m.insert_instruction(ins, make_op("squeeze", {{"axes", {0}}}), pph);
Printing out the pph instruction.get_shape() value gives me: @literal half_type, {}, {}
Quantization is causing this to be an empty parameter instead of undefined.