We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1fe8ee5 commit 60a20beCopy full SHA for 60a20be
cmake/platform.cmake
@@ -438,7 +438,10 @@ if (DNNL_TARGET_ARCH STREQUAL "RV64")
438
# Check if the RVV Intrinsics can be compiled with the current toolchain and flags
439
include(CheckCXXSourceCompiles)
440
check_cxx_source_compiles("#include <riscv_vector.h>
441
- int main() { return 0; };"
+ int main() {
442
+ size_t size = 64;
443
+ return vsetvl_e32m2(size);
444
+ };"
445
CAN_COMPILE_RVV_INTRINSICS
446
)
447
# set CAN_COMPILE_RVV_INTRINSICS to TRUE / FALSE instead of 1 / "" (Undefined)
0 commit comments