We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa01a1d commit d67e0e9Copy full SHA for d67e0e9
sycl/test/inline-asm/include/asmhelper.h
@@ -99,6 +99,9 @@ bool isInlineASMSupported(sycl::device Device) {
99
/// \returns false if test wasn't launched (i.e.was skipped) and true otherwise
100
template <typename F>
101
bool launchInlineASMTest(F &f, bool requires_particular_sg_size = true) {
102
+#if !defined(INLINE_ASM)
103
+ return true; // any device is capable to launch reference versions of tests
104
+#endif
105
cl::sycl::queue deviceQueue(cl::sycl::gpu_selector{});
106
cl::sycl::device device = deviceQueue.get_device();
107
0 commit comments