-
Notifications
You must be signed in to change notification settings - Fork 87
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
Investigate DETR model failure with latest develop branch #2137
Comments
Detr model is failing because it has this pattern: transpose --> contiguous --> preadd_layernorm --> add --> gemm. Before this #2071, since But after #2071 it uses But then during |
So we start with: transpose --> contiguous --> preadd_layernorm --> add --> gemm. And then eliminate_contiguous give us: transpose --> preadd_layernorm --> add --> gemm. But the output of Then we fuse it to this: transpose --> preadd_layernorm_add --> gemm. And then the output of |
yes |
Detr model from UIF was working until
master branch revision: 1354c86
but with the latest develop branch, it is running into Following error :
Compiling ...
Reading: detr_r50_fp32.onnx
terminate called after throwing an instance of 'migraphx::version_2_7_0::exception'
what(): /home/umayadav/repo/AMDMIGraphX/src/targets/gpu/gemm_impl.cpp:60: blas_shape: GPU_GEMM: needs to have one matrix stride as 1
The text was updated successfully, but these errors were encountered: