-
Notifications
You must be signed in to change notification settings - Fork 242
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
Find takes >1 sec for some conv configs #2814
Comments
[Attribution] @junliume @JehandadKhan
|
I suspect that the reason is that some of the kernels (likely HIP kernels because their build times are long) are missing from the precompiled binary kernel cache. But there could be dozens of other reasons ;) @kyeonghwanryu We need more info to reproduce the issue.
The delays can also be caused by copying buffers from the GPU to the CPU and back (this can take a long time), so please also check your application. I would appreciate if you provide me with the log taken from one of the suspicious configs with the following environment settings: export MIOPEN_ENABLE_LOGGING=1
export MIOPEN_ENABLE_LOGGING_CMD=1
export MIOPEN_LOG_LEVEL=6
export MIOPEN_ENABLE_LOGGING_ELAPSED_TIME=1
export MIOPEN_DEBUG_LOGGING_QUIETING_DISABLE=1 If your application is multi-threaded or uses MIOpen in the multi-process context, then please also add export MIOPEN_ENABLE_LOGGING_MPMT=1 Thanks! |
@JehandadKhan @cderb Can you please check if we have the configs shown above reside in the list of the "favorite" configs that we use to populate the system-find-db, system-perf-db and the precompiled kernel package? I've looked for
So at the fist glance find-db and perf-db look correct, but I am not sure about kernel db. |
@kyeonghwanryu wrote:
I found some cases that took >1s for miopenFindConvolution[Direction]Algorithm. I'm not sure it's related to this issue.
Originally posted by @kyeonghwanryu in #2771 (comment)
The text was updated successfully, but these errors were encountered: