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

[OneDNN]Fix ocr error since pass avx512 command #64132

Merged
merged 4 commits into from
May 13, 2024

Conversation

zhanglirong1999
Copy link
Contributor

PR Category

Others

PR Types

Bug fixes

Description

Fix ocr error since pass avx512 command

Copy link

paddle-bot bot commented May 9, 2024

你的PR提交成功,感谢你对开源项目的贡献!
请关注后续CI自动化测试结果,详情请参考Paddle-CI手册
Your PR has been submitted. Thanks for your contribution!
Please wait for the result of CI firstly. See Paddle CI Manual for details.

@paddle-bot paddle-bot bot added the contributor External developers label May 9, 2024
@zhanglirong1999
Copy link
Contributor Author

zhanglirong1999 commented May 9, 2024

related issue: #11597


#ifdef PADDLE_WITH_DNNL
if (!phi::backends::cpu::MayIUse(
phi::backends::cpu::cpu_isa_t::avx512_core)) {
Copy link
Contributor

Choose a reason for hiding this comment

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

For here, the limitation is a bit strict, since in self_dp_attention_kernel, the commonly used ISA was AVX512F. While this condition will block application of machines with only AVX512F.

@jzhang533
Copy link
Contributor

thanks for fixing, skip avx512 implemented pass on non-avx512 platforms will solve the illegal instruction issue.

I am kind of wondering the expected performance on non-avx512 platforms, since we have issues reporting unacceptable low speed on non-avx512 plaftorms, e.g.: PaddlePaddle/PaddleOCR#10346.

Copy link
Contributor

@LLee233 LLee233 left a comment

Choose a reason for hiding this comment

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

LGTM

@yuanlehome yuanlehome merged commit 28d573c into PaddlePaddle:develop May 13, 2024
30 of 31 checks passed
@LLee233
Copy link
Contributor

LLee233 commented May 13, 2024

thanks for fixing, skip avx512 implemented pass on non-avx512 platforms will solve the illegal instruction issue.

I am kind of wondering the expected performance on non-avx512 platforms, since we have issues reporting unacceptable low speed on non-avx512 plaftorms, e.g.: PaddlePaddle/PaddleOCR#10346.

Hi @jzhang533, as I mentioned in the issue, this is actually the same reason causing unexpected phenomenon. AMD seems has their mechanism to deal with incompatible higher ISA (and which also makes it hard to find the root cause since it wouldn’t report the error directly).

And about performance on non-avx512 platform. If we build and install Paddle on non-avx512 machine, the performance will be as expected, which means the performance will be better when enabling oneDNN/mkldnn.

co63oc pushed a commit to co63oc/Paddle that referenced this pull request May 13, 2024
* fix ocr avx error since pass avx512 command

* replace 512 core to 512f, limit restrict

* skip avx2 in new pir pass

* fix
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
contributor External developers Intel
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants