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

gpu: nvidia: skip unsupported gtests #2202

Merged
merged 1 commit into from
Nov 26, 2024

Conversation

sgeor255
Copy link
Contributor

@sgeor255 sgeor255 commented Nov 7, 2024

Description

This PR adds skips in gtests for unimplemented primitives on nvidia.

@sgeor255 sgeor255 requested a review from a team as a code owner November 7, 2024 12:46
@@ -28,7 +28,7 @@ if(DNNL_WITH_SYCL)
endif()

# Enable linking SYCL kernels.
if(DNNL_SYCL_CUDA OR (DNNL_SYCL_GENERIC AND NVIDIA_TARGET_SUPPORTED))
if(DNNL_SYCL_GENERIC AND NVIDIA_TARGET_SUPPORTED)
Copy link
Contributor

Choose a reason for hiding this comment

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

Could you explain, please, why DNNL_SYCL_CUDA is removed?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

The tests Simple/sycl_memory_buffer_test.InteropReorderAndUserKernel/cpu and Simple/sycl_memory_buffer_test.EltwiseWithUserKernel/cpu run with a CPU engine and try to run a SYCL kernel on CPU. They currently fail because the nvidia target triple is set. This results in a UR_ERROR_INVALID_BINARY. I am not sure if this is intended behaviour or the tests should be skipped, but removing the DNNL_SYCL_CUDA from the check here allows them to run successfully on CPU as it results in not setting the nvidia target triple.

Copy link
Contributor

Choose a reason for hiding this comment

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

What you are saying is that target shouldn't be set for CPU part of the test. You removed linker options for pure Nvidia target, but how this change would help for a generic case targeting Nvidia backend?

Copy link
Contributor

@densamoilov densamoilov Nov 21, 2024

Choose a reason for hiding this comment

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

@sgeor255, I think the problem arises due to overriding the default SYCL targets with -fsycl-targets=nvptx64-nvidia-cuda which throws off the default SYCL target, which is spir64. We could try to use both targets here as we expect the kernels to be compiled for CPU as well:
-fsycl-targets=nvptx64-nvidia-cuda,spir64

Copy link
Contributor Author

Choose a reason for hiding this comment

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

That's a good idea @densamoilov , thanks. Added the change.

@spalicki
Copy link
Contributor

make test
disable device_cpu
enable device_gpu
enable thr_cuda
enable arch_rtx

@spalicki spalicki merged commit 812ecc3 into uxlfoundation:main Nov 26, 2024
25 of 26 checks passed
@vpirogov vpirogov added this to the v3.7 milestone Dec 11, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants